Side by Side Diff: input/regression/tablature-chord-repetition-finger.ly
Issue 5595043 :
Reimplement ChordRepetition facility. (Closed)
Patch Set: Incorporate DOC improvements from James with amendments.
Use n/p to move between diff chunks;
N/P to move between comments.
Please Sign in to add in-line comments.
Jump to:
Documentation/changes.tely
Documentation/notation/fretted-strings.itely
Documentation/notation/simultaneous.itely
input/regression/chord-repetition-times.ly
input/regression/display-lily-tests.ly
input/regression/tablature-chord-repetition.ly
input/regression/tablature-chord-repetition-finger.ly
lily/include/lily-lexer.hh
lily/include/music-sequence.hh
lily/lexer.ll
lily/lily-lexer.cc
lily/lily-parser-scheme.cc
lily/music-sequence.cc
lily/parser.yy
ly/chord-repetition-init.ly
ly/music-functions-init.ly
scm/define-music-display-methods.scm
scm/define-music-types.scm
scm/ly-syntax-constructors.scm
scm/music-functions.scm
OLD NEW
(Empty) 1 \version "2.15.28"
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 ~ q 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 }
OLD NEW