]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/chord-name-exceptions.ly
Merge branch 'master' of /home/lilycvs/git/lily/
[lilypond.git] / input / lsr / chord-name-exceptions.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 property @code{chordNameExceptions} can used to store a list of
7 special notations for specific chords. 
8 " }
9
10 % 7sus4 denoted with ^7 wahh
11 chExceptionMusic = {
12   <c f g bes>1-\markup { \super "7" "wahh" }
13 }
14
15 % add to existing exceptions.
16 chExceptions = #(append
17   (sequential-music-to-chord-exceptions chExceptionMusic #t)
18   ignatzekExceptions)
19
20 theMusic = \chordmode {
21   c:7sus4 c:dim7/+f
22   \set chordNameExceptions = #chExceptions
23   c:7sus4 c:dim7/+f
24 }
25
26 \layout {
27   ragged-right = ##t 
28 }
29
30 << \context ChordNames \theMusic
31    \context Voice \theMusic
32 >>  
33