]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/showing-chords-at-changes.ly
bc72c0c5fcff19a3a2349e04944cc41575d3ea6b
[lilypond.git] / Documentation / snippets / showing-chords-at-changes.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.14.2"
8
9 \header {
10   lsrtags = "chords"
11
12   texidoc = "
13 Chord names can be displayed only at the start of lines and when the
14 chord changes.
15
16 "
17   doctitle = "Showing chords at changes"
18 } % begin verbatim
19
20
21 harmonies = \chordmode {
22   c1:m c:m \break c:m c:m d
23 }
24 <<
25   \new ChordNames {
26     \set chordChanges = ##t
27     \harmonies
28   }
29   \new Staff {
30     \relative c' { \harmonies }
31   }
32 >>