]> git.donarmstrong.com Git - lilypond.git/blob - input/new/modern-tab-text-clef.ly
Merge master into nested-bookparts
[lilypond.git] / input / new / modern-tab-text-clef.ly
1 \version "2.11.61"
2
3 \header {
4   lsrtags = "staff-notation, fretted-strings"
5
6   texidoc = "
7 Use a markup text to replace the (TAB) clef glyph with a modern font.
8
9 "
10   doctitle = "Modern TAB text clef"
11 }
12
13 TAB = \markup {
14   \raise #1.5
15   \sans
16   \bold
17   \huge
18   \override #'(baseline-skip . 2.5)
19   \center-column {
20     T
21     A
22     B
23   }
24 }
25
26 \new TabStaff {
27   \override Staff.Clef #'stencil = #(lambda (grob)
28     ly:clef::print (grob-interpret-markup grob TAB))
29   a
30 }