]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/adding-fingerings-to-tablatures.ly
Doc-de: updates from master to NR
[lilypond.git] / Documentation / snippets / adding-fingerings-to-tablatures.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.4"
5
6 \header {
7   lsrtags = "fretted-strings"
8
9 %% Translation of GIT committish: c8446d6eb2fadbf8931a867741572582759935ad
10   texidocfr = "Ajout de doigtés à des tablatures"
11
12   doctitlefr = "
13 L'ajout de doigtés à des tablatures s'obtient en conjuguant des
14 @code{\\markup} et des @code{\\finger}.
15 "
16
17   texidoc = "
18 To add fingerings to tablatures, use a combination of @code{\\markup}
19 and @code{\\finger}.
20
21 "
22   doctitle = "Adding fingerings to tablatures"
23 } % begin verbatim
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     \stemUp
45     e8\4^\one b\2 <e, g\3 e'\1>^>[ b\2 e\4]
46     <a\3 fis'\1>^>^\threeTwo[ b\2 e\4]
47   }
48 }
49