]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/markup-partial.ly
Issue 5167/7: markup-partial regtest: use \markup function assignment
[lilypond.git] / input / regression / markup-partial.ly
1 \version "2.19.34"
2
3 \header {
4   texidoc = "Partial markups acts as a chain of markup
5 commands where everything but some arguments of the final markup
6 command has already been supplied."
7 }
8
9 \layout { ragged-right = ##t }
10
11 \markup bold-red = \markup \bold \with-color #red \etc
12 \markup italic-color = \markup \italic \with-color \etc
13 \markup quarter = \markup \note-by-number #2 \etc
14
15 \markup \bold-red "Bold red."
16 \markuplist \column-lines \bold-red { Bold red in a list. }
17 \markup #(markup #:italic-color green "Italic green.")
18 \markuplist \column-lines \italic-color #green { Italic green in a list. }
19 \markup { 3/8: #(make-quarter-markup 1 UP) }