]> git.donarmstrong.com Git - lilypond.git/blob - ly/chord-modifiers-init.ly
*** empty log message ***
[lilypond.git] / ly / chord-modifiers-init.ly
1 \version "2.4.0"
2
3 chordmodifiers = #default-chord-modifier-list
4
5
6 whiteTriangleMarkup = \markup {
7   %%  394 capital delta
8   %% #(ly:export (ly:wide-char->utf-8 #x0394))
9
10   %% up pointing triangle
11   %% #(ly:export (ly:wide-char->utf-8 #x25B3))
12   
13   FIXME
14
15   %% \override #'(font-encoding . TeX-math) \char #77
16
17
18
19 blackTriangleMarkup = \markup {
20
21   %% black up pointing triangle
22   %% #(ly:export (ly:wide-char->utf-8 #x25B2))
23   FIXME
24   
25   %% \override #'(font-encoding . TeX-math) \char #78 }
26 }
27
28 ignatzekExceptionMusic = {
29         <c e gis>1-\markup { "+" }
30         <c es ges>-\markup { \super "o" } % should be $\circ$ ?
31         <c es ges bes>-\markup {
32           %%  f8 is o with slash.
33           \super #(ly:export (ly:wide-char->utf-8 #x00f8))
34         }
35         <c es ges beses>-\markup { \super  "o7" }
36 }
37
38 ignatzekExceptions = #(sequential-music-to-chord-exceptions
39                        ignatzekExceptionMusic #t)
40
41 partialJazzMusic = {
42     <c d>1-\markup { \normal-size-super "2" }
43     <c es>-\markup { "m" }
44     <c f>-\markup { \normal-size-super "sus4" }
45     <c g>-\markup { \normal-size-super "5" }
46     
47     %% TODO, partial exceptions
48     <c es f>-\markup { "m" }-\markup { \normal-size-super "sus4" }
49     <c d es>-\markup { "m" }-\markup { \normal-size-super "sus2" }
50 }
51
52 %% TODO: compatibility ignatzek code
53 fullJazzExceptions = #(sequential-music-to-chord-exceptions
54                        ignatzekExceptionMusic #f)
55
56 partialJazzExceptions = #(sequential-music-to-chord-exceptions
57                           partialJazzMusic #f)
58
59