]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/letter-tablature-formatting.ly
bd4fa1643eba3b0bde5190d83ff2e6891061123e
[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 %% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
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   texidoc = "
21 Tablature can be formatted using letters instead of numbers.
22
23 "
24   doctitle = "Letter tablature formatting"
25 } % begin verbatim
26
27
28 music = \relative c {
29   c4 d e f
30   g4 a b c
31   d4 e f g
32 }
33
34 <<
35   \new Staff {
36     \clef "G_8"
37     \music
38   }
39   \new TabStaff \with {
40     tablatureFormat = #fret-letter-tablature-format
41   }
42   {
43     \music
44   }
45 >>