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