]> git.donarmstrong.com Git - lilypond.git/blob - ly/chord-modifiers-init.ly
(ly_module_define): only define variable if
[lilypond.git] / ly / chord-modifiers-init.ly
1 \version "2.2.0"
2
3 chordmodifiers = #default-chord-modifier-list
4
5 whiteTriangleMarkup = \markup { \override #'(font-encoding . TeX-math) "M" } 
6
7 blackTriangleMarkup = \markup { \override #'(font-encoding . TeX-math) "N" }
8
9 ignatzekExceptionMusic = \notes{
10         <c e gis>1-\markup { "+" }
11         <c es ges>-\markup { \super "o" } % should be $\circ$ ?
12         <c es ges bes>-\markup { \super \combine "o" "/" }
13         <c es ges beses>-\markup { \super  "o7" }
14 }
15
16 ignatzekExceptions = #(sequential-music-to-chord-exceptions
17                        ignatzekExceptionMusic #t)
18
19 partialJazzMusic = \notes{
20     <c d>1-\markup { \normal-size-super "2" }
21     <c es>-\markup { "m" }
22     <c f>-\markup { \normal-size-super "sus4" }
23     <c g>-\markup { \normal-size-super "5" }
24     
25     %% TODO, partial exceptions
26     <c es f>-\markup { "m" }-\markup { \normal-size-super "sus4" }
27     <c d es>-\markup { "m" }-\markup { \normal-size-super "sus2" }
28 }
29
30 %% TODO: compatibility ignatzek code
31 fullJazzExceptions = #(sequential-music-to-chord-exceptions
32                        ignatzekExceptionMusic #f)
33
34 partialJazzExceptions = #(sequential-music-to-chord-exceptions
35                           partialJazzMusic #f)
36
37