]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/parenthesize-markup.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / parenthesize-markup.ly
1 \version "2.19.21"
2
3 \header{
4
5   texidoc="
6 The parenthesize markup will place parentheses
7 around any stencil.
8
9 The angularity of the parentheses can be adjusted.
10 "
11
12 }
13
14 \score {
15   \relative {c''^\markup {
16     \parenthesize {
17       \column { "A" "B" "C" }
18     }
19   } c c c
20   c^\markup {
21     \override #'(angularity . 2) {
22       \override #'(width . 0.5) {
23         \parenthesize {
24           \column { "A" "B" "C" }
25         }
26       }
27     }
28   } c c c
29   }
30 }
31