On 30/10/12 12:12, Vaughan McAlley wrote:
> \version "2.16.0"
>
> myNotes = \relative c' {
>   \time 4/4
>   d8 d d d d d d d
> }
>
> \score {
>   \new Staff = "RH" <<
>     \context Staff <<
>       \new Voice { \myNotes }
>     >>
>   >>
>   \layout {
>     \context {
>       \RemoveEmptyStaffContext % in case this is relevant
>     }
>     \context {
>       \Voice
>       \override Timing #'baseMoment = #(ly:make-moment 1 8)
>       \override Timing #'beatStructure = #'(2 2 2 2)
>       \override Timing #'beamExceptions = #'()
>     }
>   }
> }

This works:

\version "2.16.0"

myNotes = \relative c' {
  \time 4/4
  d8 d d d d d d d
}

\score {
  \new Staff = "RH" <<
    \context Staff <<
     
      \new Voice {
        \set beamExceptions = #'((end . (((1 . 8) . (2 2 2 2)))))
        \myNotes
      }
    >>
  >>
  \layout { }
}

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

Reply via email to