]> git.donarmstrong.com Git - lilypond.git/blob - input/test/chord-names-german.ly
5c84ea914969e9e1f6488620e669c2fe8cfb5047
[lilypond.git] / input / test / chord-names-german.ly
1 \version "2.3.17"
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) or semi-german 
6 (@code{\semiGermanChords} replaces B and Bes to H and Bb).
7
8 " }
9
10 scm = \chordmode {
11     c1/c cis/cis
12     % yeah, we get the idea. -hwn
13     
14     % cisis/cisis ces/ces ceses/ceses
15     b/b bis/bis bes/bes
16     % beses/beses
17
18
19
20 \paper {
21     raggedright = ##t 
22     \context {\ChordNames \consists Instrument_name_engraver }
23 }
24
25 <<
26     \new ChordNames {
27         \set instrument = #"default"
28         \scm
29     }
30     \new ChordNames {
31         \set instrument = #"german"
32         \germanChords \scm }
33     \new ChordNames {
34         \set instrument = #"semi-german"
35         \semiGermanChords \scm }
36     \context Voice { \scm }
37 >>