lilypond-user-fr
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Croches Par Deux


From: Valentin Villenave
Subject: Re: Croches Par Deux
Date: Sat, 26 Sep 2009 19:02:07 +0200

2009/9/26 Martial <address@hidden>:
> 1) Les croches ne sont plus lié 2/2

Je crois que c'est fait exprès. Mais si tu as un exemple qui fait
vraiment moche je posterai un rapport de bug :)

> 2) #(override-auto-beam-setting ... n'est plus supporté
>
> du coup la syntaxe est la suivante :
>
> %%--------------------------------------
> CrochesParDeux = {
> %\overrideBeamSettings  #'Score #'(2 . 4) #'end #'((* . ( 1 1)))
> \overrideBeamSettings  #'Score #'(3 . 4) #'end #'((* . ( 1 1 1)))
> \overrideBeamSettings  #'Score #'(4 . 4) #'end #'((* . ( 1 1 1 1)))
> }

J'utilise un système différent (j'ai peut-être tort) :

#(define my-auto-beam-settings
  (append default-beam-settings
  `(
    ((end * * 3 4) . ,(ly:make-moment 1 4))
    ((end * * 3 4) . ,(ly:make-moment 1 2))
    ((end * * 4 4) . ,(ly:make-moment 1 4))
    ((end * * 4 4) . ,(ly:make-moment 3 4))
    ((end * * 2 2) . ,(ly:make-moment 1 4))
    ((end * * 2 2) . ,(ly:make-moment 1 2))
    ((end * * 2 2) . ,(ly:make-moment 3 4))
    ((end * * 2 8) . ,(ly:make-moment 1 4))
    ((be  * * 5 8) . ,(ly:make-moment 1 8))
    ((end * * 5 8) . ,(ly:make-moment 5 8))
    )))

\layout {
  \context {
    \Score
    autoBeamSettings = #my-auto-beam-settings
  }
}

Cordialement,
Valentin




reply via email to

[Prev in Thread] Current Thread [Next in Thread]