On 28.12.2009, at 10:59, Stefan Thomas wrote:
Dear community,
in the below quoted snippet, I would like to have the rests in the
second staff without articulations.
Is it possible?
\version "2.12.2"
arti = {
\repeat "unfold" 4 { s8-.-> s-. }
}
fragA = \relative c' {
\context Voice << {c8 d e f g a b c } { \arti }>>
}
fragB = \relative c'' {
\context Voice << {r8 b r g r e r c} {\arti }>>
}
\score {
<< \new Staff \fragA
\new Staff \fragB >>
}
_______________________________________________
lilypond-user mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/lilypond-user
arti = {\repeat unfold 4 {s8-.-> s-.}
fragA = \relative c' { \context Voice { c8 d e f g a b c }
fragB = \relative c'' { \context Voice {r8 b r g r e r c}
\score {
<<
\new Staff << \arti \fragA>>
\new Staff \fragB
>>
}
_______________________________________________
lilypond-user mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/lilypond-user