]> git.donarmstrong.com Git - lilypond.git/blob - input/test/tablature.ly
po-replace
[lilypond.git] / input / test / tablature.ly
1 \version "1.3.146"
2
3 %{
4
5 A sample tablature, with both normal staff and tab.
6
7 Tablature is done by overriding the note-head formatting function, and
8 putting it on a 6-line staff. A special engraver takes care of going
9 from string-number + pitch to number.
10
11 %}
12
13 partition = \notes {
14     a,4-2 c'-5 a-4 e'-6
15     e-3 c'-5 a-4 e'-6
16   }
17
18 \score {
19   \context StaffGroup <
20     \context Staff <
21       % Hide fingering number (used for string number) for the "normal" staff
22       \property Staff.Fingering \override #'transparent = ##t
23       
24       \partition
25     >
26     \context TabStaff <
27       \partition
28     >
29   >
30 }