]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/tablature-chord-repetition-finger.ly
Merge remote-tracking branch 'origin/translation'
[lilypond.git] / input / regression / tablature-chord-repetition-finger.ly
1 \version "2.19.2"
2
3 \header {
4   texidoc = "In a TabStaff, the chord repetition function needs
5 to retain string and fingering information.  Using
6 @code{\\tabChordRepeats} achieves that, in contrast to the music
7 on the main staff."
8 }
9
10 Guitar = \relative c' {
11   r8 < gis-6 cis-6 b-0 > ~ q4 q8 ~ 8 q4
12 }
13
14 \score {
15   \new StaffGroup <<
16     \new Staff {
17       \new Voice {
18         \clef "treble_8"
19         \Guitar
20       }
21     }
22     \new TabStaff {
23       \new TabVoice {
24         \tabChordRepeats \Guitar
25       }
26     }
27   >>
28 }