]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/adding-fingerings-to-tablatures.ly
Merge branch 'lilypond/translation' of ssh://jomand@git.sv.gnu.org/srv/git/lilypond
[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.4
5 \version "2.13.4"
6
7 \header {
8 %% Translation of GIT committish: c8446d6eb2fadbf8931a867741572582759935ad
9   texidocfr = "Ajout de doigtés à des tablatures"
10
11   doctitlefr = "
12 L'ajout de doigtés à des tablatures s'obtient en conjuguant des
13 @code{\\markup} et des @code{\\finger}.
14 "
15
16   lsrtags = "fretted-strings"
17   texidoc = "
18 To add fingerings to tablatures, use a combination of @code{\\markup}
19 and @code{\\finger}.
20 "
21   doctitle = "Adding fingerings to tablatures"
22 } % begin verbatim
23
24
25 one = \markup { \finger 1 }
26 two = \markup { \finger 2 }
27 threeTwo = \markup {
28   \override #'(baseline-skip . 2)
29   \column {
30     \finger 3
31     \finger 2
32   }
33 }
34 threeFour = \markup {
35   \override #'(baseline-skip . 2)
36   \column {
37     \finger 3
38     \finger 4
39   }
40 }
41
42 \score {
43   \new TabStaff {
44     \tabFullNotation
45     \stemUp
46     e8\4^\one b\2 <e, g\3 e'\1>^>[ b\2 e\4]
47     <a\3 fis'\1>^>^\threeTwo[ b\2 e\4]
48   }
49 }
50