]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/changing-the-chord-names-to-german-or-semi-german-notation.ly
Merge branch 'master' of /home/lilycvs/git/lily/
[lilypond.git] / input / lsr / changing-the-chord-names-to-german-or-semi-german-notation.ly
1 %% Do not edit this file; it is auto-generated from LSR!
2 %% Tags: chords
3 \version "2.11.35"
4
5 \header { texidoc = "
6 The english naming of chords (default) can be changed to german 
7 (@code{\\germanChords} replaces B and Bes to H and B) or semi-german 
8 (@code{\\semiGermanChords} replaces B and Bes to H and Bb).
9
10
11
12 " }
13 % begin verbatim
14 music = \chordmode {
15   c1/c cis/cis
16   b/b bis/bis bes/bes
17
18
19 %% The following is only here to print the names of the
20 %% chords styles; it can be removed if you do not need to
21 %% print them.
22
23 \layout {
24   \context {\ChordNames \consists Instrument_name_engraver }
25 }
26
27 <<
28   \new ChordNames {
29     \set ChordNames.instrumentName = #"default"
30     \music
31   }
32   \new ChordNames {
33     \set ChordNames.instrumentName = #"german"
34     \germanChords \music }
35   \new ChordNames {
36     \set ChordNames.instrumentName = #"semi-german"
37     \semiGermanChords \music }
38   \context Voice { \music }
39 >>