Hi Francesco,
Am 07.02.22 um 17:53 schrieb Francesco Napoleoni:
Hello everyone
How can I adjust (if possible) such property in a markup block?
namely I would like to “shrink” the “V.° I.°” and the “V.° 2.°” text like the
attached screenshot.
It's easier to help if you also provide the LilyPond code generating
your example.
But here's my guess: Multi-part markup expressions like
\markup { some\raise #0.5 thing }
are implicitly understood to be separate words. If you want them to be
printed without spaces in between, you can use \concat:
\markup { \concat { some\raise #0.5 thing } }
Lukas