]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/adding-fingerings-to-tablatures.ly
lilypond-book robustness: ensure EOL at the end of @verbatim
[lilypond.git] / input / lsr / adding-fingerings-to-tablatures.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.13.1"
4
5 \header {
6   lsrtags = "fretted-strings"
7
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   texidoc = "
17 To add fingerings to tablatures, use a combination of @code{\\markup}
18 and @code{\\finger}. 
19
20 "
21   doctitle = "Adding fingerings to tablatures"
22 } % begin verbatim
23
24 one = \markup { \finger 1 }
25 two = \markup { \finger 2 }
26 threeTwo = \markup {
27   \override #'(baseline-skip . 2)
28   \column {
29     \finger 3
30     \finger 2
31   }
32 }
33 threeFour = \markup {
34   \override #'(baseline-skip . 2)
35   \column {
36     \finger 3
37     \finger 4
38   }
39 }
40
41 \score {
42   \new TabStaff {
43     \stemUp
44     e8\4^\one b\2 <e, g\3 e'\1>^>[ b\2 e\4]
45     <a\3 fis'\1>^>^\threeTwo[ b\2 e\4]
46   }
47 }
48