]> 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/lilydev/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 http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.11.46"
4
5 \header {
6   lsrtags = "chords"
7
8   texidoc = "
9 The english naming of chords (default) can be changed to german 
10 (@code{\\germanChords} replaces B and Bes to H and B) or semi-german 
11 (@code{\\semiGermanChords} replaces B and Bes to H and Bb).
12
13
14
15
16 "
17   doctitle = "Changing the chord names to German or semi-German notation"
18 } % begin verbatim
19 music = \chordmode {
20   c1/c cis/cis
21   b/b bis/bis bes/bes
22
23
24 %% The following is only here to print the names of the
25 %% chords styles; it can be removed if you do not need to
26 %% print them.
27
28 \layout {
29   \context {\ChordNames \consists Instrument_name_engraver }
30 }
31
32 <<
33   \new ChordNames {
34     \set ChordNames.instrumentName = #"default"
35     \music
36   }
37   \new ChordNames {
38     \set ChordNames.instrumentName = #"german"
39     \germanChords \music }
40   \new ChordNames {
41     \set ChordNames.instrumentName = #"semi-german"
42     \semiGermanChords \music }
43   \context Voice { \music }
44 >>