]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/tablature-chord-repetition.ly
Merge remote-tracking branch 'origin/translation'
[lilypond.git] / input / regression / tablature-chord-repetition.ly
1 \version "2.19.2"
2
3 \header {
4   texidoc = "In a TabStaff, the chord repetition function needs
5 to save the string information.  The obsolete function
6 @code{\\tabChordRepetition} establishes this setting score-wide.
7 Nowadays, you would rather use just @code{\\tabChordRepeat} on the
8 music in the tabstaff, not affecting other contexts."
9 }
10
11 \tabChordRepetition
12
13 Guitar = \relative c' {
14   r8 < gis\4 cis\3 b\2 > ~ q4 q8 ~ 8 q4
15 }
16
17 \score {
18   \new StaffGroup <<
19     \new Staff {
20       \new Voice {
21         \clef "treble_8"
22         \hide Voice.StringNumber
23         \Guitar
24       }
25     }
26     \new TabStaff {
27       \new TabVoice {
28         \Guitar
29       }
30     }
31   >>
32 }