]> 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
11   %% need to have symbol; can't deal with TTF yet.
12   \override #'(font-name . "Symbol")
13
14   %% 2206 : delta from the symbol font.
15      #(ly:export (ly:wide-char->utf-8 #x2206))
16   
17   %% up pointing triangle
18   %% #(ly:export (ly:wide-char->utf-8 #x25B3))
19   
20   %% \override #'(font-encoding . TeX-math) \char #77
21
22
23
24 blackTriangleMarkup = \markup {
25
26   %% black up pointing triangle
27   %% #(ly:export (ly:wide-char->utf-8 #x25B2))
28   FIXME
29   
30   %% \override #'(font-encoding . TeX-math) \char #78 }
31 }
32
33 ignatzekExceptionMusic = {
34         <c e gis>1-\markup { "+" }
35         <c es ges>-\markup { \super "o" } % should be $\circ$ ?
36         <c es ges bes>-\markup {
37           %%  f8 is o with slash.
38           \super #(ly:export (ly:wide-char->utf-8 #x00f8))
39         }
40         <c es ges beses>-\markup { \super  "o7" }
41 }
42
43 ignatzekExceptions = #(sequential-music-to-chord-exceptions
44                        ignatzekExceptionMusic #t)
45
46 partialJazzMusic = {
47     <c d>1-\markup { \normal-size-super "2" }
48     <c es>-\markup { "m" }
49     <c f>-\markup { \normal-size-super "sus4" }
50     <c g>-\markup { \normal-size-super "5" }
51     
52     %% TODO, partial exceptions
53     <c es f>-\markup { "m" }-\markup { \normal-size-super "sus4" }
54     <c d es>-\markup { "m" }-\markup { \normal-size-super "sus2" }
55 }
56
57 %% TODO: compatibility ignatzek code
58 fullJazzExceptions = #(sequential-music-to-chord-exceptions
59                        ignatzekExceptionMusic #f)
60
61 partialJazzExceptions = #(sequential-music-to-chord-exceptions
62                           partialJazzMusic #f)
63
64