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