]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/letter-tablature-formatting.ly
Get texidoc translations out of snippets source files
[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 = "staff-notation, fretted-strings"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
13   texidoces = "
14 La tablatura se puede formatear utilizando letras en lugar de nĂºmeros.
15
16 "
17
18   doctitlees = "Formateado de tablaturas con letras"
19
20 %% Translation of GIT committish: 57f9346bb030f49336a858fcbf1519366fe56454
21   texidocfr = "
22 Une tablature peut comporter des lettres en lieu et place des chiffres.
23
24 "
25   doctitlefr = "Tablature en lettres"
26
27   texidoc = "
28 Tablature can be formatted using letters instead of numbers.
29
30 "
31   doctitle = "Letter tablature formatting"
32 } % begin verbatim
33
34
35 music = \relative c {
36   c4 d e f
37   g4 a b c
38   d4 e f g
39 }
40
41 <<
42   \new Staff {
43     \clef "G_8"
44     \music
45   }
46   \new TabStaff \with {
47     tablatureFormat = #fret-letter-tablature-format
48   }
49   {
50     \music
51   }
52 >>