summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Sorensen <c_sorensen@byu.edu>2010-03-06 16:25:10 -0700
committerCarl Sorensen <c_sorensen@byu.edu>2010-03-06 18:31:23 -0700
commitfc7a880cfa76e25a4464690e23656d1d32a58a06 (patch)
tree490c4a737e7364060cc6bd2b4e6cda3257ac801c
parent1bcc3a3e8bd097f4d9bb99337ac488648fcfbc8a (diff)
Add angularity to regtest and docstring for parenthesize markup
-rw-r--r--input/regression/parenthesize-markup.ly12
-rw-r--r--scm/define-markup-commands.scm20
2 files changed, 26 insertions, 6 deletions
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
+ }
+ }
}
}
}