]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/tablature-dot-placement.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / input / regression / tablature-dot-placement.ly
1 \version "2.19.21"
2
3 \header {
4
5   texidoc = "
6 With full notation, the dots on the tablature heads should
7 respect two-digit fret numbers.
8 "
9
10 }
11
12 myMusic = \relative  {
13   <f'\3 a c>4.
14   <f\3 g d'>4.
15   <f\3 a d>4
16 }
17
18 \score {
19   <<
20     \new Staff {
21       \clef "treble_8"
22       \myMusic
23     }
24     \new TabStaff {
25       \tabFullNotation
26       \myMusic
27     }
28   >>
29 }