]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/new/letter-tablature-formatting.ly
Imported Upstream version 2.14.2
[lilypond.git] / Documentation / snippets / new / letter-tablature-formatting.ly
1 \version "2.14.0"
2
3 \header {
4   lsrtags = "staff-notation, fretted-strings"
5
6   texidoc = "
7 Tablature can be formatted using letters instead of numbers.
8
9 "
10   doctitle = "Letter tablature formatting"
11 }
12
13 music = \relative c {
14   c4 d e f
15   g4 a b c
16   d4 e f g
17 }
18
19 <<
20   \new Staff {
21     \clef "G_8"
22     \music
23   }
24   \new TabStaff \with {
25     tablatureFormat = #fret-letter-tablature-format
26   }
27   {
28     \music
29   }
30 >>