]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/adding-fingerings-to-tablatures.ly
Merge branch 'master' of git://git.savannah.gnu.org/lilypond.git
[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: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c
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: 96ee692447057131395fe4c1f9fe55805b710aa6
21   texidocfr = "Ajout de doigtés à des tablatures"
22
23   doctitlefr = "
24 L'ajout de doigtés à des tablatures s'obtient en conjuguant des
25 @code{\\markup} et des @code{\\finger}.
26 "
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