Release: bump version.
[lilypond/patrick.git] / ly / chord-modifiers-init.ly
blob82d996d61b4cc6fc7f610bb8f7ab28c436e435b4
1 \version "2.12.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))
18 blackTriangleMarkup = \markup {
19 \triangle ##t
21 %% black up pointing triangle
22 % #(ly:export (ly:wide-char->utf-8 #x25B2))
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))
32 <c es ges beses>-\markup { \super "o7" }
35 partialJazzMusic = {
36 <c d>1-\markup { \normal-size-super "2" }
37 <c es>-\markup { "m" }
38 <c f>-\markup { \normal-size-super "sus4" }
39 <c g>-\markup { \normal-size-super "5" }
41 %% TODO, partial exceptions
42 <c es f>-\markup { "m" }-\markup { \normal-size-super "sus4" }
43 <c d es>-\markup { "m" }-\markup { \normal-size-super "sus2" }
46 powerChordSymbol = {
47 <c g>-\markup { \normal-size-super "5" }
48 <c g c'>1-\markup { \normal-size-super "5" }
52 %% TODO: compatibility ignatzek code
53 fullJazzExceptions=
54 #(sequential-music-to-chord-exceptions ignatzekExceptionMusic #f)
56 partialJazzExceptions=
57 #(sequential-music-to-chord-exceptions partialJazzMusic #f)
59 powerChordExceptions =
60 #(sequential-music-to-chord-exceptions powerChordSymbol #t)
62 ignatzekExceptions =
63 #(sequential-music-to-chord-exceptions ignatzekExceptionMusic #t)