]> git.donarmstrong.com Git - lilypond.git/blob - input/bugs/chord-changes.ly
patch::: 1.3.121.jcn1
[lilypond.git] / input / bugs / chord-changes.ly
1 \header{
2 texidoc="property chordChanges: only display chord names when
3 there's a change in the chords scheme, but always display the
4 chord name after a line break.
5 ";
6 }
7
8 scheme = \chords {
9   \property ChordNames.chordChanges = ##t
10   c1:m \break c:m c:m c:m d
11 }
12
13 \score {
14   \notes <
15     \context ChordNamesVoice \scheme
16     \context Staff \transpose c'' \scheme
17   >
18   \paper{
19     linewidth = 40 * \staffspace;
20   }
21 }