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