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