]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/showing-chords-at-changes.ly
Add '-dcrop' option to ps and svg backends
[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.di.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.18.0"
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 harmonies = \chordmode {
21   c1:m c:m \break c:m c:m d
22 }
23
24 <<
25   \new ChordNames {
26     \set chordChanges = ##t
27     \harmonies
28   }
29   \new Staff {
30     \relative c' { \harmonies }
31   }
32 >>