On 2022-10-17 1:13 pm, Federico Bruni wrote:
Sorry, I should have not put that link, as it only works in 2.22 and no
longer in 2.23.
Here's a minimal example:
\version "2.23.14"
tuningOpenD = \markup {
\fontsize #-4
\override #'(baseline-skip . 1.5)
\column \override #'(font-name . "Arial Bold") {
D A F♯ D A D
}
}
\new TabStaff {
\set TabStaff.stringTunings = #guitar-open-d-tuning
\set TabStaff.instrumentName = \markup { " " \tuningOpenD }
\set TabStaff.shortInstrumentName = \markup \tuningOpenD
d,8 a, d fis a d'
}
For the line break issue, you need to join the F and # together,
otherwise each markup expression is treated as its own line within
\column.
So, something like " \concat { F \number ♯ } ".
-- Aaron Hill