On 19/11/10 23:15, Arno Rog wrote:
PartPTwoTwoVoiceOne =  \relative fis'' {
        \clef "treble"
        \key d \major
        \time 3/4
        e8 ( d8 ) cis8\>  ( b8 ) a8. ( g16\! ) %<-correct beaming
        fis8 ( e8 ) a8 ( a8 ) b8\>  ( ais8\! ) %<-incorrect beaming
}

\score { \PartPTwoTwoVoiceOne }

If you look in lilypond/usr/share/lilypond/current/scm/time-signature-settings.scm, you can see that the default for 3/4 time is for eighth notes to be beamed by the bar. To override this, add

\set beamExceptions = #'((end . (((1 . 8) . (2 2 2)))))

to beam eighth notes on the beat. Use \unset beamExceptions if you want automatic beaming to revert to the default:

\version "2.13.39"

\relative d'' {
    \clef "treble"
    \key d \major
    \time 3/4
    \repeat unfold 12 { d8 }
    \set beamExceptions = #'((end . (((1 . 8) . (2 2 2)))))
    \repeat unfold 12 { d8 }
    \unset beamExceptions
    \repeat unfold 12 { d8 }
}

Nick


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

Reply via email to