]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/magnifyMusic-phrasing-slurs.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / magnifyMusic-phrasing-slurs.ly
1 \version "2.19.8"
2
3 \header {
4   texidoc = "Phrasing slurs should be scaled along with notation
5 size when using the @code{\magnifyMusic} command.  They can get
6 thicker than the default, but not thinner."
7 }
8
9 \score {
10   \new Voice {
11     \omit Staff.TimeSignature
12     \time 7/8
13     <<
14       { \repeat unfold 7 \relative { g'32[\( a b c\)] } }
15       {
16         \magnifyMusic 0.50 s8
17         \magnifyMusic 0.63 s
18         \magnifyMusic 0.80 s
19         \magnifyMusic 1.00 s
20         \magnifyMusic 1.26 s
21         \magnifyMusic 1.59 s
22         \magnifyMusic 2.00 s
23       }
24     >>
25   }
26   \addlyrics {
27     "50%" _ _ _ _ _ _ _ _ _ _ _
28     "100%" _ _ _ _ _ _ _ _ _ _ _
29     "200%" _ _ _
30   }
31 }