]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/tablature.ly
Imported Upstream version 2.14.2
[lilypond.git] / input / regression / tablature.ly
1 \version "2.14.0"
2
3 \header{ texidoc = "@cindex Tabulature
4 A sample tablature, with both normal staff and tab.
5
6 Tablature is done by overriding the note-head formatting function, and
7 putting it on a 6-line staff. A special engraver takes care of going
8 from string-number + pitch to number.
9
10 String numbers can be entered as note articulations (inside a chord) and
11 chord articulations (outside a chord)
12 "
13        }
14
15 partition =  {
16   \key e \major
17   <e\5 dis'\4>
18   <e dis'>
19   <e dis'\4>
20   <e dis'>\5\4
21   <e dis'\4>\5
22 }
23
24
25 \context StaffGroup <<
26   \context Staff <<
27     \clef "G_8"
28     \partition
29   >>
30   \context TabStaff <<
31     \partition
32   >>
33 >>
34
35