]> git.donarmstrong.com Git - lilypond.git/blob - input/new/fretboard-chordchanges.ly
Merge commit 'origin/dev/jneeman' into systems-per-page
[lilypond.git] / input / new / fretboard-chordchanges.ly
1 \version "2.13.0"
2
3 \header {
4   lsrtags = "fretted-strings"
5   texidoc = "FretBoards can be set to display only when the chord changes
6 or at the beginning of a new line."
7   doctitle = "Fretboard chordchanges"
8 }
9
10 myChords = \chordmode {
11   c1 c1 \break
12   c1 c1 \break
13   \set chordChanges = ##t
14   c1 c1 \break
15 }
16
17 <<
18   \new ChordNames { \myChords }
19   \new FretBoards { \myChords }
20   \new Staff { \myChords }
21 >>