]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/tablature-chord-repetition.ly
Imported Upstream version 2.14.2
[lilypond.git] / input / regression / tablature-chord-repetition.ly
1 \version "2.14.0"
2
3 \header {
4   texidoc = "In a TabStaff, the chord repetition function needs
5 to save the string information. This is handled by
6 @code{\\tabChordRepetition}."
7 }
8
9 \tabChordRepetition
10
11 Guitar = \relative c' {
12   r8 < gis\4 cis\3 b\2 > ~ q4 q8 ~ q q4
13 }
14
15 \score {
16   \new StaffGroup <<
17     \new Staff {
18       \new Voice {
19         \clef "treble_8"
20         \override Voice.StringNumber #'transparent = ##t
21         \Guitar
22       }
23     }
24     \new TabStaff {
25       \new TabVoice {
26         \Guitar
27       }
28     }
29   >>
30 }