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