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