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