2016-03-16 11:21 GMT+01:00 George <theonlygu...@gmail.com>:
> If you'd like a detailed explanation
> of my problem you can have a look
> at the question I posted here:
> http://bit.ly/1WpUjqA
>
> I am trying to create a zig-zagged line after a note head,
> currently I am using this code:
>
> \version "2.18.2"
> \new DrumStaff \with {
>   instrumentName = #"Güiro "
>   shortInstrumentName = #"Guir. "
> }
> {
>   \stopStaff
>   \override Staff.StaffSymbol.line-count = #1
>   \startStaff
>   \override NoteHead.style = #'cross
>   r4 c4\startTrillSpan e8\stopTrillSpan c8 c4 |
> }
>
> but this creates a trill line above the note
> (I'd like it to appear on the stave) with 'tr' written before it
> (I'd like the zig-zag line to appear directly
> after the note head, with no extra text,
> just the line.)
>
> How can I accomplish this?
>
> Thank you very much for your swift response,
> George
> _______________________________________________
> lilypond-user mailing list
> lilypond-user@gnu.org
> https://lists.gnu.org/mailman/listinfo/lilypond-user

How about using RhythmicStaff and glissando?

\version "2.18.2"

\new RhythmicStaff \with {
  instrumentName = #"Güiro "
  shortInstrumentName = #"Guir. "
  \consists "Clef_engraver"
  \override Glissando.springs-and-rods = #ly:spanner::set-spacing-rods
  \override Glissando.style = #'trill
  \override NoteHead.style = #'cross
}
{
  \clef percussion
  r4 c4-\tweak minimum-length #6 \glissando e8 c8 c4 |
}


HTH,
  Harm

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

Reply via email to