]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/letter-tablature-formatting.ly
Doc: Update LSR.
[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.18"
6
7 \header {
8 %% Translation of GIT committish: d2119a9e5e951c6ae850322f41444ac98d1ed492
9   texidoces = "
10 La tablatura se puede formatear utilizando letras en lugar de nĂºmeros.
11
12 "
13
14   doctitlees = "Formateado de tablaturas con letras"
15
16   lsrtags = "staff-notation, fretted-strings"
17
18   texidoc = "
19 Tablature can be formatted using letters instead of numbers.
20
21 "
22   doctitle = "Letter tablature formatting"
23 } % begin verbatim
24
25
26 music = \relative c {
27   c4 d e f
28   g4 a b c
29   d4 e f g
30 }
31
32 <<
33   \new Staff {
34     \clef "G_8"
35     \music
36   }
37   \new TabStaff \with {
38     tablatureFormat = #fret-letter-tablature-format
39   }
40   {
41     \music
42   }
43 >>