]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/chord-capo.ly
Merge branch 'lilypond/translation' of ssh://git.sv.gnu.org/srv/git/lilypond into...
[lilypond.git] / input / regression / chord-capo.ly
1 \version "2.14.0"
2
3 \header{
4   texidoc="Properties capoPitch, capoVertical: display chordnames, suitably
5 transposed for a guitar capo, either in a line or one above the other.
6 "
7 }
8
9 <<
10   \new ChordNames \chordmode {
11     c1
12     g1
13     c1
14     g1
15     c1
16     g1
17   }
18   \chordmode {
19     c1
20     g1
21     \set ChordNames.capoPitch = #(ly:make-pitch 0 -2 -1/2)
22     c1
23     g1
24     \set ChordNames.capoVertical = ##t
25     c1
26     g1
27   }
28 >>