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