From: Carl Sorensen Date: Sat, 6 Mar 2010 23:25:10 +0000 (-0700) Subject: Add angularity to regtest and docstring for parenthesize markup X-Git-Tag: release/2.13.16-1~48 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=fc7a880cfa76e25a4464690e23656d1d32a58a06;p=lilypond.git Add angularity to regtest and docstring for parenthesize markup --- diff --git a/input/regression/parenthesize-markup.ly b/input/regression/parenthesize-markup.ly index 0699587ec8..89a4949585 100644 --- a/input/regression/parenthesize-markup.ly +++ b/input/regression/parenthesize-markup.ly @@ -12,10 +12,20 @@ The angularity of the parentheses can be adjusted. } \score { - c''^\markup { + \relative c'' {c^\markup { \parenthesize { \column { "A" "B" "C" } } + } c c c + c^\markup { + \override #'(angularity . 2) { + \override #'(width . 0.5) { + \parenthesize { + \column { "A" "B" "C" } + } + } + } + } c c c } } diff --git a/scm/define-markup-commands.scm b/scm/define-markup-commands.scm index 4a7a6a0fdf..9240681dad 100644 --- a/scm/define-markup-commands.scm +++ b/scm/define-markup-commands.scm @@ -2646,7 +2646,7 @@ figured bass notation. stroke") (define-markup-command (eyeglasses layout props) - () + () #:category other "Prints out eyeglasses, indicating strongly to look at the conductor. @lilypond[verbatim,quote] @@ -3165,10 +3165,20 @@ a column containing several lines of text. @lilypond[verbatim,quote] \\markup { - \\parenthesize { - \\column { - foo - bar + \\line { + \\parenthesize { + \\column { + foo + bar + } + } + \\override #'(angularity . 2) { + \\parenthesize { + \\column { + bah + baz + } + } } } }