]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/adding-fingerings-to-tablatures.ly
b85e45cc4a0a771f183bae277ed2f23f1b12ddab
[lilypond.git] / Documentation / snippets / adding-fingerings-to-tablatures.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 = "specific-notation, fretted-strings"
11
12 %% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
13   texidoces = "
14 Para añadir digitaciones a las tablaturas, utilice una combinación de
15 @code{\\markup} y @code{\\finger}.
16 "
17
18   doctitlees = "Añadir digitaciones a las tablaturas"
19
20
21 %% Translation of GIT committish: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4
22   texidocfr = "
23 L'ajout de doigtés à des tablatures s'obtient en conjuguant des
24 @code{\\markup} et des @code{\\finger}.
25
26 "
27   doctitlefr = "Ajout de doigtés à des tablatures"
28
29   texidoc = "
30 To add fingerings to tablatures, use a combination of @code{\\markup}
31 and @code{\\finger}.
32
33 "
34   doctitle = "Adding fingerings to tablatures"
35 } % begin verbatim
36
37
38
39 one = \markup { \finger 1 }
40 two = \markup { \finger 2 }
41 threeTwo = \markup {
42   \override #'(baseline-skip . 2)
43   \column {
44     \finger 3
45     \finger 2
46   }
47 }
48 threeFour = \markup {
49   \override #'(baseline-skip . 2)
50   \column {
51     \finger 3
52     \finger 4
53   }
54 }
55
56 \score {
57   \new TabStaff {
58     \tabFullNotation
59     \stemUp
60     e8\4^\one b\2 <g\3 e'\1>^>[ b\2 e\4]
61     <a\3 fis'\1>^>^\threeTwo[ b\2 e\4]
62   }
63 }
64