On 2024-01-20 06:33, Adrian wrote:
is it possible to create a "z" stem for buzz rolls?
Maybe this helps:
\version "2.24.0"
% Buzz rolls with stem down
% Second parameter values:
% 4.0 puts the z on the middle line
% 3.5 puts the z on the 2nd space up
% 3.0 puts the z on the 2nd line up, which looks good for a snare buzz
BuzzOn = \override TextScript.extra-offset = #'(-0.5 . 3.0)
BuzzOff = \revert TextScript.extra-offset
BuzzMarkup = \markup { \bold "z" }
SnareEighthBuzz = \drummode {
\BuzzOn sn8-\BuzzMarkup \BuzzOff
}
SnareSixteenthBuzz = \drummode {
\BuzzOn sn16-\BuzzMarkup \BuzzOff
}
Drums = \drummode {
sn8
\BuzzOn \SnareEighthBuzz \BuzzOff
sn16
\BuzzOn \SnareSixteenthBuzz \BuzzOff
\fine
}
\score {
\new DrumStaff \with { }
<<
\new DrumVoice { \voiceTwo \Drums }
>>
\layout { indent = 0.0\cm ragged-last = ##t }
}