Merge branch 'fret-diagram-details'
[lilypond/csorensen.git] / ly / chord-modifiers-init.ly
blobe401937b023ad445670472df993d53d03c73ae78
1 \version "2.10.0"
3 chordmodifiers = #default-chord-modifier-list
6 whiteTriangleMarkup = \markup {
7 \triangle ##f
8 %% 394 capital delta
9 %#(ly:export (ly:wide-char->utf-8 #x0394))
11 %% 2206 : delta from the symbol font.
12 % #(ly:export (ly:wide-char->utf-8 #x2206))
14 %% up pointing triangle
15 % #(ly:export (ly:wide-char->utf-8 #x25B3))
17 %% \override #'(font-encoding . TeX-math) \char #77
20 blackTriangleMarkup = \markup {
21 \triangle ##t
23 %% black up pointing triangle
24 % #(ly:export (ly:wide-char->utf-8 #x25B2))
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))
34 <c es ges beses>-\markup { \super "o7" }
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" }
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" }
49 %% TODO: compatibility ignatzek code
50 fullJazzExceptions=
51 #(sequential-music-to-chord-exceptions ignatzekExceptionMusic #f)
53 partialJazzExceptions=
54 #(sequential-music-to-chord-exceptions partialJazzMusic #f)
56 ignatzekExceptions =
57 #(sequential-music-to-chord-exceptions ignatzekExceptionMusic #t)