On 11/19/10 5:16 AM, "lilypond-user-requ...@gnu.org"
<lilypond-user-requ...@gnu.org> 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 }
> 

Simply add

\set beamExceptions = #'()

after the \time 3/4 line:

sorensen2:lilypond Carl$ more arnotest.ly
PartPTwoTwoVoiceOne =  \relative fis'' {
        \clef "treble"
        \key d \major
        \time 3/4
        \set beamExceptions = #'()
        e8 ( d8 ) cis8\> ( b8 ) a8. ( g16\! ) % <-correct beaming
        fis8 ( e8 ) a8 ( a8 ) b8\> ( ais8\! ) % <-incorrect beaming
}


HTH,

Carl



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

Reply via email to