]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/letter-tablature-formatting.ly
Doc: LSR update.
[lilypond.git] / Documentation / snippets / letter-tablature-formatting.ly
1 % Do not edit this file; it is automatically
2 % generated from Documentation/snippets/new
3 % This file is in the public domain.
4 %% Note: this file works from version 2.13.10
5 \version "2.13.16"
6
7 \header {
8   lsrtags = "staff-notation, fretted-strings"
9
10   texidoc = "
11 Tablature can be formatted using letters instead of numbers.
12
13 "
14   doctitle = "Letter tablature formatting"
15 } % begin verbatim
16
17
18 music = \relative c {
19   c4 d e f
20   g4 a b c
21   d4 e f g
22 }
23
24 <<
25   \new Staff {
26     \clef "G_8"
27     \music
28   }
29   \new TabStaff \with {
30     tablatureFormat = #fret-letter-tablature-format
31   }
32   {
33     \music
34   }
35 >>