X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Ftablature-chord-repetition.ly;fp=input%2Fregression%2Ftablature-chord-repetition.ly;h=e89b1c52f1401095606058f376eac8df685add69;hb=941dff9d2a67080e0dd8474f1e70f0c72ace6424;hp=0000000000000000000000000000000000000000;hpb=5a22d6233a39d3164e1ca043244794c268be4ad0;p=lilypond.git diff --git a/input/regression/tablature-chord-repetition.ly b/input/regression/tablature-chord-repetition.ly new file mode 100644 index 0000000000..e89b1c52f1 --- /dev/null +++ b/input/regression/tablature-chord-repetition.ly @@ -0,0 +1,30 @@ +\version "2.14.0" + +\header { + texidoc = "In a TabStaff, the chord repetition function needs +to save the string information. This is handled by +@code{\\tabChordRepetition}." +} + +\tabChordRepetition + +Guitar = \relative c' { + r8 < gis\4 cis\3 b\2 > ~ q4 q8 ~ q q4 +} + +\score { + \new StaffGroup << + \new Staff { + \new Voice { + \clef "treble_8" + \override Voice.StringNumber #'transparent = ##t + \Guitar + } + } + \new TabStaff { + \new TabVoice { + \Guitar + } + } + >> +}