Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 \version "2.13.1" | 1 \version "2.13.1" |
2 | 2 |
3 \header { | 3 \header { |
4 texidoc = "Rests in music passed to ChordNames context display noChordSymbol. | 4 texidoc = "Rests in music passed to ChordNames context display noChordSymbol. |
5 noChordSymbol is treated like a ChordName with respect to chordChanges. | 5 noChordSymbol is treated like a ChordName with respect to chordChanges. |
6 " | 6 " |
7 } | 7 } |
8 | 8 |
9 myChords = \chordmode { | 9 myChords = \chordmode { |
10 c1 r1 r1 \break | 10 c1 r1 r1 \break |
11 r1 g1 c1 | 11 r1 g1 c1 \break |
12 } | 12 } |
13 | 13 |
14 \score { | 14 \score { |
15 << | 15 << |
16 \new ChordNames { \myChords } | 16 \new ChordNames {· |
17 \new FretBoards { \myChords } | 17 \myChords· |
18 \new Staff { \myChords } | 18 \set chordChanges = ##t |
19 \myChords | |
20 } | |
21 \new FretBoards {· | |
22 \myChords· | |
23 \myChords | |
24 } | |
25 \new Staff {· | |
26 \myChords· | |
27 \myChords | |
28 } | |
19 >> | 29 >> |
20 } | 30 } |
LEFT | RIGHT |