lilypond-user
[Top][All Lists]
Advanced

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

Secondary Beams and Spacer rests


From: David Stocker
Subject: Secondary Beams and Spacer rests
Date: Fri, 29 Jan 2010 10:17:46 -0500
User-agent: Thunderbird 2.0.0.23 (X11/20090817)

Is there a way to make LilyPond respect spacer rests for the purpose of breaking secondary beams? Is there any reason why this should not be a default behavior?

Thanks,

David

%%%%minimal example%%%%

\version "2.13"

\include "english.ly"

fingers = {
 \relative c' {
   <b cs fs>16[ b8 \rest <e, as cs>16 ]
 }
}

thumb = {
 \relative c {
   cs16[ s8 fs,16 ]
 }
}

\score {
 \new Staff = "Guitar" {
   \clef "treble_8"
   \key d \major
   \time 4/4
   <<
     \new Voice = "fingers" {
   \voiceOne
   \fingers
     }
     \new Voice = "thumb" {
   \voiceTwo
   \thumb
     }
   >>
 }
}

%%%%end minimal example%%%%
\version "2.13"

\include "english.ly"

fingers = {
  \relative c' {
    <b cs fs>16[ b8 \rest <e, as cs>16 ]
  }
}

thumb = {
  \relative c {
    cs16[ s8 fs,16 ]
  }
}

\score {
  \new Staff = "Guitar" {
    \clef "treble_8"
    \key d \major
    \time 4/4
    <<
      \new Voice = "fingers" {
        \voiceOne
        \fingers
      }
      \new Voice = "thumb" {
        \voiceTwo
        \thumb
      }
    >>
  }
}


reply via email to

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