]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/adding-fingerings-to-tablatures.ly
Merge branch 'master' of ssh+git://git.sv.gnu.org/srv/git/lilypond
[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 %% Tags: guitar
4 \version "2.11.35"
5
6 \header { texidoc = "
7 To add fingerings to tablatures, you can use a combination of
8 @code{\\markup} and @code{\\finger}. 
9 " }
10 % begin verbatim
11 one = \markup{ \finger "1" }
12 two = \markup{ \finger "2" }
13 threetwo = \markup{ \column {\finger "3" \finger "2"} }
14 threefour = \markup{ \column {\finger "3" \finger "4"} }
15
16 \score {      
17   \context TabStaff {
18     \stemUp
19     e8\4^\one b\2 < e, g\3 e'\1 >^>[ b\2 e\4] 
20     < a\3 fis'\1 >^>^\threetwo[ b\2 e\4]
21   }
22 }