]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/parenthesize-markup.ly
Imported Upstream version 2.14.2
[lilypond.git] / input / regression / parenthesize-markup.ly
diff --git a/input/regression/parenthesize-markup.ly b/input/regression/parenthesize-markup.ly
new file mode 100644 (file)
index 0000000..9801e7a
--- /dev/null
@@ -0,0 +1,31 @@
+\version "2.14.0"
+
+\header{
+
+  texidoc="
+The parenthesize markup will place parentheses
+around any stencil.
+
+The angularity of the parentheses can be adjusted.
+"
+
+}
+
+\score {
+  \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
+  }
+}
+