Fairchild wrote:
> Graham -
>
> Here's a trim-down of the thread, for sticking in the manual, in the section
> on ties, or repeats, or both. Edit to suit.
>
> There ought to be a better way that makes the tie more pronounced, but a
> simple way eludes me.
>
> - Bruce
>
> ================================
>
>
> Ties are not normally continued into second endings, but a standard trick is
> to add a tie from an invisible note. One way is to make the invisible note
> a grace note. In that way, it doesn't destroy the rhythm.
>
>
> \version "2.4.6"
> \layout{ raggedright = ##t }
> \score{
> \relative c' {
> \repeat volta 2 { f g a2 ~ }
> \alternative {
> { a4 g2 f4 }
> { \grace{ \hideNotes a4~ } \unHideNotes a g2. }
> }}}
No... because this won't work when there's more than one staff. You'll
get 2 second voltas:
\version "2.4.5"
\layout{ raggedright = ##t }
\score{
<<
\relative c' {
\repeat volta 2 { f g a2 ~ }
\alternative {
{ a4 g2 f4 }
{ \grace{ \hideNotes a4~ } \unHideNotes a g2. }
}
}
\new DrumStaff {
\drummode {
\repeat volta 2 { sn4 sn sn sn}
\alternative {
{sn4 sn sn sn }
{sn4 hh2. }
}
}
}
>>
}
Try this instead:
\version "2.4.5"
\layout{ raggedright = ##t }
\score{
<<
\relative c' {
\repeat volta 2 { f g a2 ~ }
\alternative {
{ a4 g2 f4 }
{ s64 \grace{ \hideNotes a4~ } \unHideNotes a4*1/2 s16 s32 s64 g2. }
}
}
\new DrumStaff {
\drummode {
\repeat volta 2 { sn4 sn sn sn}
\alternative {
{sn4 sn sn sn }
{sn4 hh2. }
}
}
}
>>
}
yes... ugly.
_______________________________________________
lilypond-user mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/lilypond-user