]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/letter-tablature-formatting.ly
Fix white space
[lilypond.git] / Documentation / snippets / letter-tablature-formatting.ly
1 % DO NOT EDIT this file manually; it is automatically
2 % generated from Documentation/snippets/new
3 % Make any changes in Documentation/snippets/new/
4 % and then run scripts/auxiliar/makelsr.py
5 %
6 % This file is in the public domain.
7 %% Note: this file works from version 2.13.36
8 \version "2.14.0"
9
10 \header {
11 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
12   texidoces = "
13 La tablatura se puede formatear utilizando letras en lugar de nĂºmeros.
14
15 "
16
17   doctitlees = "Formateado de tablaturas con letras"
18
19   lsrtags = "staff-notation, fretted-strings"
20
21   texidoc = "
22 Tablature can be formatted using letters instead of numbers.
23
24 "
25   doctitle = "Letter tablature formatting"
26 } % begin verbatim
27
28
29 music = \relative c {
30   c4 d e f
31   g4 a b c
32   d4 e f g
33 }
34
35 <<
36   \new Staff {
37     \clef "G_8"
38     \music
39   }
40   \new TabStaff \with {
41     tablatureFormat = #fret-letter-tablature-format
42   }
43   {
44     \music
45   }
46 >>