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