lilypond-user
[Top][All Lists]
Advanced

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

Re: Is it possible to change beaming from the \layout block?


From: Nick Payne
Subject: Re: Is it possible to change beaming from the \layout block?
Date: Tue, 30 Oct 2012 14:09:23 +1100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:16.0) Gecko/20121011 Thunderbird/16.0.1

On 30/10/12 13:36, Vaughan McAlley wrote:
On 30 October 2012 13:09, Nick Payne <address@hidden> wrote:
      \new Voice {
        \set beamExceptions = #'((end . (((1 . 8) . (2 2 2 2)))))
        \myNotes
      }
Is there any alternative to setting \beamExceptions explicitly in
every voice? That’s what I’m looking for...

Yes, you can set it at the Staff level:

\version "2.17.5"


upper = \relative c'' {

c8 c c c c c c c

}


lower = \relative c' {

c8 c c c c c c c

}


\score {

\new Staff {

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

\clef "treble"

\key c \major

\time 4/4

<<

\new Voice { \voiceOne \upper }

\new Voice { \voiceTwo \lower }

>>

}

\layout { }

}




reply via email to

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