]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/modern-tab-text-clef.ly
lilypond-book robustness: ensure EOL at the end of @verbatim
[lilypond.git] / input / lsr / modern-tab-text-clef.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.13.1"
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   \left-align
22   \center-column {
23     T
24     A
25     B
26   }
27 }
28
29 \new TabStaff {
30   \override Staff.Clef #'stencil = #(lambda (grob)
31     (grob-interpret-markup grob TAB))
32   a
33 }