]> git.donarmstrong.com Git - lilypond.git/blobdiff - ly/chord-modifiers-init.ly
Midi: write about improved MIDI output in Changes.
[lilypond.git] / ly / chord-modifiers-init.ly
index c0713a26d28750f0d46c3b2564ee50fe751214a0..82d996d61b4cc6fc7f610bb8f7ab28c436e435b4 100644 (file)
@@ -1,28 +1,25 @@
-\version "2.4.0"
+\version "2.12.0"
 
 chordmodifiers = #default-chord-modifier-list
 
 
 whiteTriangleMarkup = \markup {
+  \triangle ##f
   %%  394 capital delta
-  %#(ly:export (ly:wide-char->utf-8 #x0394))
+  %#(ly:export (ly:wide-char->utf-8 #x0394))
 
-  %% up pointing triangle
-  %% #(ly:export (ly:wide-char->utf-8 #x25B3))
+  %% 2206 : delta from the symbol font.
+  %   #(ly:export (ly:wide-char->utf-8 #x2206))
   
-  FIXME
-
-  %% \override #'(font-encoding . TeX-math) \char #77
-
+  %% up pointing triangle
+  % #(ly:export (ly:wide-char->utf-8 #x25B3))
 } 
 
 blackTriangleMarkup = \markup {
+  \triangle ##t
 
   %% black up pointing triangle
-  %% #(ly:export (ly:wide-char->utf-8 #x25B2))
-  FIXME
-  
-  %% \override #'(font-encoding . TeX-math) \char #78 }
+%  #(ly:export (ly:wide-char->utf-8 #x25B2))
 }
 
 ignatzekExceptionMusic = {
@@ -35,9 +32,6 @@ ignatzekExceptionMusic = {
        <c es ges beses>-\markup { \super  "o7" }
 }
 
-ignatzekExceptions = #(sequential-music-to-chord-exceptions
-                      ignatzekExceptionMusic #t)
-
 partialJazzMusic = {
     <c d>1-\markup { \normal-size-super "2" }
     <c es>-\markup { "m" }
@@ -49,11 +43,21 @@ partialJazzMusic = {
     <c d es>-\markup { "m" }-\markup { \normal-size-super "sus2" }
 }
 
+powerChordSymbol = {
+    <c g>-\markup { \normal-size-super "5" }
+    <c g c'>1-\markup { \normal-size-super "5" }
+}
+
+
 %% TODO: compatibility ignatzek code
-fullJazzExceptions = #(sequential-music-to-chord-exceptions
-                       ignatzekExceptionMusic #f)
+fullJazzExceptions=
+#(sequential-music-to-chord-exceptions ignatzekExceptionMusic #f)
+
+partialJazzExceptions=
+#(sequential-music-to-chord-exceptions partialJazzMusic #f)
 
-partialJazzExceptions = #(sequential-music-to-chord-exceptions
-                          partialJazzMusic #f)
+powerChordExceptions =
+  #(sequential-music-to-chord-exceptions powerChordSymbol #t)
 
-                      
+ignatzekExceptions  =
+#(sequential-music-to-chord-exceptions ignatzekExceptionMusic #t)