]> git.donarmstrong.com Git - lilypond.git/blobdiff - ly/chord-modifiers-init.ly
*** empty log message ***
[lilypond.git] / ly / chord-modifiers-init.ly
index 9a2330a5b22528761a018797d2073e99c376b8a6..e3ce5773827e9c47b05bc51c3e61a8c5217f60b7 100644 (file)
@@ -1,15 +1,34 @@
-\version "2.3.8"
+\version "2.4.0"
 
 chordmodifiers = #default-chord-modifier-list
 
-whiteTriangleMarkup = \markup { \override #'(font-encoding . TeX-math) \char #77 } 
 
-blackTriangleMarkup = \markup { \override #'(font-encoding . TeX-math) \char #78 }
+whiteTriangleMarkup = \markup {
+  %%  394 capital delta
+  #(ly:export (ly:wide-char->utf-8 #x0394))
+
+  %% 2206 : delta from the symbol font.
+  %   #(ly:export (ly:wide-char->utf-8 #x2206))
+  
+  %% up pointing triangle
+  % #(ly:export (ly:wide-char->utf-8 #x25B3))
+  
+  %% \override #'(font-encoding . TeX-math) \char #77
+} 
+
+blackTriangleMarkup = \markup {
+
+  %% black up pointing triangle
+  #(ly:export (ly:wide-char->utf-8 #x25B2))
+}
 
 ignatzekExceptionMusic = {
        <c e gis>1-\markup { "+" }
        <c es ges>-\markup { \super "o" } % should be $\circ$ ?
-       <c es ges bes>-\markup { \super \combine "o" "/" }
+       <c es ges bes>-\markup {
+         %%  f8 is o with slash.
+         \super #(ly:export (ly:wide-char->utf-8 #x00f8))
+       }
        <c es ges beses>-\markup { \super  "o7" }
 }