]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/letter-tablature-formatting.ly
Merge branch 'translation' into staging
[lilypond.git] / Documentation / snippets / letter-tablature-formatting.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.14.2"
8
9 \header {
10   lsrtags = "fretted-strings, staff-notation"
11
12   texidoc = "
13 Tablature can be formatted using letters instead of numbers.
14
15 "
16   doctitle = "Letter tablature formatting"
17 } % begin verbatim
18
19
20 music = \relative c {
21   c4 d e f
22   g4 a b c
23   d4 e f g
24 }
25
26 <<
27   \new Staff {
28     \clef "G_8"
29     \music
30   }
31   \new TabStaff \with {
32     tablatureFormat = #fret-letter-tablature-format
33   }
34   {
35     \music
36   }
37 >>