Le 23/09/2021 à 00:09, Nuno Trocado a écrit :
Try the \markLengthOn command described here:
That's what I was looking for. Merci, Jean!
Actually, this doesn't work when there's a time signature in the same bar...
{
r1
\markLengthOn
\mark \default
\tempo 4 = 120
\time 3/4
\repeat unfold 4 c''4
}
Perhaps you want the tempo mark to start on
the first note rather than the time signature:
\version "2.23.4"
{
r1
\override Score.MetronomeMark.break-align-symbols = #'()
\markLengthOn
\mark \default
\tempo 4 = 120
\time 3/4
\repeat unfold 4 c''4
}
About that, see
http://lilypond.org/doc/v2.22/Documentation/notation/aligning-objects#using-the-break_002dalignable_002dinterface
Best,
Jean