]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/markup-partial.ly
Issue 5167/7: markup-partial regtest: use \markup function assignment
[lilypond.git] / input / regression / markup-partial.ly
index 37d2255cd9dc9b5cec44dc80c3274980a0daf8d6..66199dde7b9752f655bdb0b44311ae74d74d5f6e 100644 (file)
@@ -1,14 +1,19 @@
-\version "2.19.24"
+\version "2.19.34"
 
-\header
-{ texidoc = "Partial markups acts as a chain of markup
-  commands where everything but the final markup has already been
-  supplied."
+\header {
+  texidoc = "Partial markups acts as a chain of markup
+commands where everything but some arguments of the final markup
+command has already been supplied."
 }
 
 \layout { ragged-right = ##t }
 
-bold-red-markup = \markup \bold \with-color #red \etc
+\markup bold-red = \markup \bold \with-color #red \etc
+\markup italic-color = \markup \italic \with-color \etc
+\markup quarter = \markup \note-by-number #2 \etc
 
-\markup \bold-red "Single markup"
-\markuplist \column-lines \bold-red { Markups in a list. }
+\markup \bold-red "Bold red."
+\markuplist \column-lines \bold-red { Bold red in a list. }
+\markup #(markup #:italic-color green "Italic green.")
+\markuplist \column-lines \italic-color #green { Italic green in a list. }
+\markup { 3/8: #(make-quarter-markup 1 UP) }