Nitpick: ly:spanner-bound grob name slur -> spanner.
[lilypond.git] / input / regression / chord-names-languages.ly
blobe446afa4fb0b07789522c2ff069d2f9d2780fa04
1 \version "2.12.0"
2 \header {
3 texidoc = "@cindex Chord Names German
4 The english naming of chords (default) can be changed to german
5 (@code{\germanChords} replaces B and Bes to H and B), semi-german
6 (@code{\semiGermanChords} replaces B and Bes to H and Bb), italian
7 (@code{\italianChords} uses Do Re Mi Fa Sol La Si), or french
8 (@code{\frenchChords} replaces Re to RĂ©).
10 " }
12 scm = \chordmode {
13 e1/d c:m
14 % c/c cis/cis
15 % yeah, we get the idea. -hwn
17 % cisis/cisis ces/ces ceses/ceses
18 b/b bis/bis bes/bes
19 % beses/beses
23 \layout {
24 ragged-right = ##t
25 \context {\ChordNames \consists Instrument_name_engraver }
29 \new ChordNames {
30 \set instrumentName = #"default"
31 \scm
33 \new ChordNames {
34 \set instrumentName = #"german"
35 \germanChords \scm }
36 \new ChordNames {
37 \set instrumentName = #"semi-german"
38 \semiGermanChords \scm }
39 \new ChordNames {
40 \set instrumentName = #"italian"
41 \italianChords \scm }
42 \new ChordNames {
43 \set instrumentName = #"french"
44 \frenchChords \scm }
46 \context Voice { \scm }