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