lilypond-user
[Top][All Lists]
Advanced

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

Tremolo slope


From: Jean Abou Samra
Subject: Tremolo slope
Date: Fri, 9 Oct 2020 17:52:21 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.10.0

Hi,
Is there a solution to have a slope in a full measure tremolo?
This doesn't seem to work.
Philippe Auclair

\version "2.20.0"
\score {
  \new Staff {
    \override StemTremolo  #'slope = #0.5
    \repeat tremolo 16 { c'32 c'' }
  }
}
Hello,

StemTremolo is for tremolos on a single note, which are
printed over the stem. Yours is just a special case of
Beam, so here you go:


\version "2.20.0"
\score {
  \new Staff {
    \override Beam.positions = #'(-1 . 1)
    \repeat tremolo 16 { c'32 c'' }
  }
}

Best,
Jean Abou-Samra

reply via email to

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