]> git.donarmstrong.com Git - lilypond.git/blob - input/test/chord-names-german.ly
* input/test/divisiones.ly: added
[lilypond.git] / input / test / chord-names-german.ly
1
2 \version "1.7.17"
3 \header  {
4
5     texidoc = "By setting @code{ChordNames.chordRootNamer}, the root
6 of the chord may be named with a different function."
7
8 }
9
10 scm = \chords { c4/c cis/cis cisis/cisis ces/ces ceses/ceses b/b bis/bis bes/bes beses/beses } 
11 \score {
12 <    \context ChordNames \chords <
13     % #t gives true german chord-names
14     % #f gives semi-german chord-names -
15     % - with Bb and below keeping the english names
16     \property ChordNames. chordRootNamer = #(chord-name->german-markup #f)
17     \property ChordNames. chordNoteNamer = #note-name->german-markup
18     \scm >
19     \context Voice \scm >
20 }