]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/tablature-zero-finger.ly
60c0113dc653915efa3abf3aaa3e820b95a44870
[lilypond.git] / input / regression / tablature-zero-finger.ly
1 \version "2.14.0"
2 #(ly:set-option 'warning-as-error #f)
3
4 \header {
5   texidoc="
6 A fingering indication of zero counts as an open string for fret
7 calculations.  An inappropriate request for an open string will generate
8 a warning message and set the requested pitch in the tablature.
9 "
10 }
11
12 mymusic = \relative c {
13   \set minimumFret = #1
14   <d-0 d'-2 f-3 a-1>1
15   <f-0>
16 }
17
18 \score {
19   <<
20     \new Staff {
21       \clef "treble_8"
22       \mymusic
23     }
24     \new TabStaff {
25       \mymusic
26     }
27   >>
28 }