]> git.donarmstrong.com Git - lilypond.git/commitdiff
Add angularity to regtest and docstring for parenthesize markup
authorCarl Sorensen <c_sorensen@byu.edu>
Sat, 6 Mar 2010 23:25:10 +0000 (16:25 -0700)
committerCarl Sorensen <c_sorensen@byu.edu>
Sun, 7 Mar 2010 01:31:23 +0000 (18:31 -0700)
input/regression/parenthesize-markup.ly
scm/define-markup-commands.scm

index 0699587ec8ea6dbd0aba70e2e29372cbbf683cab..89a494958507b6f95023c5858d93f9ce2045493b 100644 (file)
@@ -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
   }
 }
 
index 4a7a6a0fdfda507ea1ea102ba9630f74e3900e7f..9240681daddedb1d8937f4a59174ec8d9b8517d5 100644 (file)
@@ -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
+        }
+      }
     }
   }
 }