X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Ftablature-chord-repetition-finger.ly;fp=input%2Fregression%2Ftablature-chord-repetition-finger.ly;h=27b68dbaca5edce3849cfe62604522850202053e;hb=32a34dcef0c0041c6d62677487a380b5c8b85712;hp=0000000000000000000000000000000000000000;hpb=f41973ff763d5972a85995b6d40c864281ec6714;p=lilypond.git diff --git a/input/regression/tablature-chord-repetition-finger.ly b/input/regression/tablature-chord-repetition-finger.ly new file mode 100644 index 0000000000..27b68dbaca --- /dev/null +++ b/input/regression/tablature-chord-repetition-finger.ly @@ -0,0 +1,28 @@ +\version "2.16.0" + +\header { + texidoc = "In a TabStaff, the chord repetition function needs +to retain string and fingering information. Using +@code{\\tabChordRepeats} achieves that, in contrast to the music +on the main staff." +} + +Guitar = \relative c' { + r8 < gis-6 cis-6 b-0 > ~ q4 q8 ~ q q4 +} + +\score { + \new StaffGroup << + \new Staff { + \new Voice { + \clef "treble_8" + \Guitar + } + } + \new TabStaff { + \new TabVoice { + \tabChordRepeats \Guitar + } + } + >> +}