OLD | NEW |
1 \version "2.14.0" | 1 \version "2.14.0" |
2 \header { | 2 \header { |
3 texidoc = "@cindex Chord Names German | 3 texidoc = "@cindex Chord Names German |
4 The English naming of chords (default) can be changed to 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· | 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 | 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 | 7 (@code{\italianChords} uses Do Re Mi Fa Sol La Si), or French |
8 (@code{\frenchChords} replaces Re to Ré). | 8 (@code{\frenchChords} replaces Re to Ré). |
9 | 9 |
10 " } | 10 " } |
11 | 11 |
12 scm = \chordmode { | 12 scm = \chordmode { |
13 e1/d c:m | 13 e1/d c:m |
14 % c/c cis/cis | 14 % c/c cis/cis |
15 % yeah, we get the idea. -hwn | 15 % yeah, we get the idea. -hwn |
16 ···· | 16 ···· |
17 % cisis/cisis ces/ces ceses/ceses | 17 % cisis/cisis ces/ces ceses/ceses |
18 b/b bis/bis bes/bes | 18 b/b bis/bis bes/bes |
19 % beses/beses | 19 % beses/beses |
20 }· | 20 }· |
21 | 21 |
22 | 22 |
23 \layout { | 23 \layout { |
24 ragged-right = ##t· | 24 ragged-right = ##t· |
25 \context {\ChordNames \consists Instrument_name_engraver } | 25 \context {\ChordNames \consists "Instrument_name_engraver" } |
26 } | 26 } |
27 | 27 |
28 << | 28 << |
29 \new ChordNames { | 29 \new ChordNames { |
30 \set instrumentName = #"default" | 30 \set instrumentName = #"default" |
31 \scm | 31 \scm |
32 } | 32 } |
33 \new ChordNames { | 33 \new ChordNames { |
34 \set instrumentName = #"german" | 34 \set instrumentName = #"german" |
35 \germanChords \scm } | 35 \germanChords \scm } |
36 \new ChordNames { | 36 \new ChordNames { |
37 \set instrumentName = #"semi-german" | 37 \set instrumentName = #"semi-german" |
38 \semiGermanChords \scm } | 38 \semiGermanChords \scm } |
39 \new ChordNames { | 39 \new ChordNames { |
40 \set instrumentName = #"italian" | 40 \set instrumentName = #"italian" |
41 \italianChords \scm } | 41 \italianChords \scm } |
42 \new ChordNames { | 42 \new ChordNames { |
43 \set instrumentName = #"french" | 43 \set instrumentName = #"french" |
44 \frenchChords \scm } | 44 \frenchChords \scm } |
45 | 45 |
46 \context Voice { \scm } | 46 \context Voice { \scm } |
47 >> | 47 >> |
OLD | NEW |