%% http://lsr.di.unimi.it/LSR/Item?id=658 %%------------------------------------------ EADGBE = \markup { \fontsize #-4 \override #'(baseline-skip . 1.5) \column \override #'(font-name . "Arial Bold") { E B G D A E } } %%------------------------------------------------ \new TabStaff { \set TabStaff.instrumentName = \markup { " " \EADGBE } \set TabStaff.shortInstrumentName = \markup \EADGBE e,8 c e gis b e' } %% To get accidentals from the musicfont use %% \concat { \musicglyph } %% use \raise and \fontsize to taste strangeTuning = \markup { \fontsize #-4 \override #'(baseline-skip . 1.5) \column \override #'(font-name . "Arial Bold") { D C \concat { F \raise #0.5 \fontsize #-2 \musicglyph #"accidentals.sharp" } D \concat { B \raise #0.2 \fontsize #-2 \musicglyph #"accidentals.flat" } F } } << \new Staff { \clef "G_8" f, bes, d fis c' d' } \new TabStaff { \set TabStaff.stringTunings = \stringTuning %D C F D Bb F> \set TabStaff.instrumentName = \markup { " " \strangeTuning } \set TabStaff.shortInstrumentName = \markup \strangeTuning f, bes, d fis c' d' } >> %%------------------------------------------------