]> git.donarmstrong.com Git - lilypond.git/blob - ly/chord-modifiers-init.ly
(whiteTriangleMarkup): use the greek
[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 blackTriangleMarkup = \markup {
24
25   %% black up pointing triangle
26   #(ly:export (ly:wide-char->utf-8 #x25B2))
27 }
28
29 ignatzekExceptionMusic = {
30         <c e gis>1-\markup { "+" }
31         <c es ges>-\markup { \super "o" } % should be $\circ$ ?
32         <c es ges bes>-\markup {
33           %%  f8 is o with slash.
34           \super #(ly:export (ly:wide-char->utf-8 #x00f8))
35         }
36         <c es ges beses>-\markup { \super  "o7" }
37 }
38
39 ignatzekExceptions = #(sequential-music-to-chord-exceptions
40                        ignatzekExceptionMusic #t)
41
42 partialJazzMusic = {
43     <c d>1-\markup { \normal-size-super "2" }
44     <c es>-\markup { "m" }
45     <c f>-\markup { \normal-size-super "sus4" }
46     <c g>-\markup { \normal-size-super "5" }
47     
48     %% TODO, partial exceptions
49     <c es f>-\markup { "m" }-\markup { \normal-size-super "sus4" }
50     <c d es>-\markup { "m" }-\markup { \normal-size-super "sus2" }
51 }
52
53 %% TODO: compatibility ignatzek code
54 fullJazzExceptions = #(sequential-music-to-chord-exceptions
55                        ignatzekExceptionMusic #f)
56
57 partialJazzExceptions = #(sequential-music-to-chord-exceptions
58                           partialJazzMusic #f)
59
60