Le 11/08/2022 à 03:11, Craig Dabelstein a écrit :
Hi all,
I know this is not difficult but I just can't get it to work.
I want the tempo to look like:
Allegro moderato
die *[image of crotchet] *etwa 108 M.M.
I have this so far:
\tempo \markup \left-column { "Allegro moderato"
\smaller "die etwa 108 M.M." }
To produce the crotchet I have:
\note {4} #1
but I can't get it all combined to actually work.
Any help?
All the best,
The piece you are missing is probably \line, which you
need in order to group elements in just one line of the column.
\version "2.22.2"
{
\tempo \markup \left-column {
"Allegro moderato"
\line {
\fontsize #-3 \general-align #Y #-0.8 \note {4} #1
\smaller "die etwa 108 M.M."
}
}
c'
}
See also
https://lilypond.org/doc/v2.23/Documentation/notation/formatting-text#text-markup-introduction
(that page of the documentation was improved in 2.23, but
the text there will work in 2.22 too).
Best,
Jean