]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/adding-fingerings-to-tablatures.ly
Fix makelsr.py and update LSR
[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        
18 \context TabStaff {
19
20 \stemUp
21
22 { e8\4^\one b\2 < e, g\3 e'\1 >^>[ b\2 e\4] < a\3 fis'\1 >^>^\threetwo[ b\2 e\4] }
23
24 }
25
26 }