lilypond-user
[Top][All Lists]
Advanced

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

Re: can't understand beaming


From: Nick Payne
Subject: Re: can't understand beaming
Date: Sat, 20 Nov 2010 05:14:21 +1100
User-agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.12) Gecko/20101028 Thunderbird/3.1.6

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




reply via email to

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