]> git.donarmstrong.com Git - lilypond.git/blob - input/manual/chord-names-languages.ly
Merge master into nested-bookparts
[lilypond.git] / input / manual / chord-names-languages.ly
1 \version "2.11.61"
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Ă©).
9
10 " }
11
12 scm = \chordmode {
13     e1/d c:m
14     % c/c cis/cis
15     % yeah, we get the idea. -hwn
16     
17     % cisis/cisis ces/ces ceses/ceses
18     b/b bis/bis bes/bes
19     % beses/beses
20
21
22
23 \layout {
24     ragged-right = ##t 
25     \context {\ChordNames \consists Instrument_name_engraver }
26 }
27
28 <<
29     \new ChordNames {
30         \set instrumentName = #"default"
31         \scm
32     }
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 }
45
46     \context Voice { \scm }
47 >>