lilypond-user
[Top][All Lists]
Advanced

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

Re: HELP: Trill line without 'tr' written before it


From: Thomas Morley
Subject: Re: HELP: Trill line without 'tr' written before it
Date: Wed, 16 Mar 2016 12:15:12 +0100

2016-03-16 11:21 GMT+01:00 George <address@hidden>:
> 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
> address@hidden
> 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



reply via email to

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