Arno Rog <arno.rog <at> gmail.com> writes:

> I've found some info in ‘scm/time-signature-settings.scm'
>     ;; in 3 4 time:
>     ;;   use defaults, but combine all beats into a unit if possible
>     ;;
>     ;;   set all beams to end on beats, but 1 8 to beam entire measure
>     ;;   in order to avoid beaming every beat for entier measure, we set
>     ;;   triplets back to every beat.
>     ((3 . 4) .
>              ((beamExceptions . ((end . (((1 . 8) . (6))
>                                          ((1 . 12) . (3 3 3))))))))
> 
> Now I have to figure out to counteract this exception ('but 1 8 to beam entire
> measure') since this is definatly not done in most baroque music.
> 

Elaboration on what's mentioned in ‘scm/time-signature-settings.scm' the use of
'beamExceptions' works (sort off)

PartPTwoTwoVoiceOne =  \relative fis'' {
\clef "treble"
\key d \major
\time 3/4
\set Timing.beamExceptions = #'( (end . ( ( (1 . 8) . (2 2 2) ) ) ) ) 

e8 ( d8 ) cis8\> ( b8 ) a8. ( g16\! ) | % <-correct beaming
fis8 ( e8 ) a8 ( a8 ) b8\> ( ais8\! ) | % <-incorrect beaming
}

\score { \PartPTwoTwoVoiceOne }



_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to