diff options
author | David Kastrup <dak@gnu.org> | 2015-12-09 21:40:27 +0100 |
---|---|---|
committer | David Kastrup <dak@gnu.org> | 2015-12-16 09:07:32 +0100 |
commit | 31059902570b531abd4cb21fc78ee2b5cc9395e7 (patch) | |
tree | 30c6f925c260f33a9eac2b3af6aa2739c2244aec /input | |
parent | 70eaa17f47486111dc6a7a88aacbe1944514261b (diff) |
Issue 4687/2: Let partial-markup regtest show more complex omissions
Diffstat (limited to 'input')
-rw-r--r-- | input/regression/markup-partial.ly | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/input/regression/markup-partial.ly b/input/regression/markup-partial.ly index 37d2255cd9..f0759d26ed 100644 --- a/input/regression/markup-partial.ly +++ b/input/regression/markup-partial.ly @@ -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 +italic-color-markup = \markup \italic \with-color \etc +quarter-markup = \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 \italic-color #green "Italic green." +\markuplist \column-lines \italic-color #green { Italic green in a list. } +\markup { 3/8: \quarter #1 #UP } |