]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/modern-tab-text-clef.ly
Doc-es: pre-merge update of texidoc committishes.
[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 %% Note: this file works from version 2.12.0
4 \version "2.12.0"
5
6 \header {
7   lsrtags = "staff-notation, fretted-strings"
8
9   texidoc = "
10 Use a markup text to replace the (TAB) clef glyph with a modern font.
11
12 "
13   doctitle = "Modern TAB text clef"
14 } % begin verbatim
15
16
17 TAB = \markup {
18   \raise #1.5
19   \sans
20   \bold
21   \huge
22   \override #'(baseline-skip . 2.5)
23   \center-column {
24     T
25     A
26     B
27   }
28 }
29
30 \new TabStaff {
31   \override Staff.Clef #'stencil = #(lambda (grob)
32     (grob-interpret-markup grob TAB))
33   a
34 }