X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fparenthesize-markup.ly;fp=input%2Fregression%2Fparenthesize-markup.ly;h=9801e7af522641c1d16bace0866fab8312050e36;hb=e90f0536f9be39ada0bef0aeb0d275dec3b2fb5b;hp=0000000000000000000000000000000000000000;hpb=a8c9e8a7ca320ab0df5fd32e717fd62cd7635ce6;p=lilypond.git diff --git a/input/regression/parenthesize-markup.ly b/input/regression/parenthesize-markup.ly new file mode 100644 index 0000000000..9801e7af52 --- /dev/null +++ b/input/regression/parenthesize-markup.ly @@ -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 + } +} +