I'm trying to typeset this music:
I can get close with this, but I would really like the stroke through the dotted-quarter in the tuplets.
\relative{
\clef bass
\key f \major
\numericTimeSignature
\time 2/2
\tempo "Animato assai." % 2 = 110
\mark 7
a,,8\ff r8
a'8 r8
\tuplet 3/2 { a8[ a a ] }
a8 r8 |
d,1-> |
% V~~~ Can I put a strike through this stem?
\tuplet 3/2 {a'4.} a8 r8
\tuplet 3/2 { a8 [ a8 a8 ] } a8 r8 |
% ^~~~ Or can I collapse these?
d,1-> |
}
Which gives me:
I've tried setting the Flag.stroke-style, but that just puts a stroke through 8ths that already have flags.
\override Flag.stroke-style = #"grace"


Try looking up
\repeat tremolo. I'm not at my computer so I can't test it, sorry.Update:
Tremolo is the magic word that's missing here. It actually has nothing to do with tuplets.
\repeat tremolo x c'ymeans: Repeatc'yxtimes. In this case, we want\repeat tremolo 3 a'8for three eights.A short-hand form is
c'x:ywherexis the total duration andyis the length of a single note. In this case:a'4.:8will give us eights until a dotted-quarter has elapsed.Here's the updated code:
That gives this: