]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/magnifyMusic-dots-beamlets.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / magnifyMusic-dots-beamlets.ly
1 \version "2.19.8"
2
3 \header {
4   texidoc = "Dot size and beamlet length should be scaled along
5 with notation size when using the @code{\magnifyMusic} command."
6 }
7
8 \score {
9   \new Voice {
10     \omit Staff.TimeSignature
11     \time 7/4
12     <<
13       { \repeat unfold 7 \relative { g'8.[ g16] } }
14       {
15         \magnifyMusic 0.50 s4
16         \magnifyMusic 0.63 s
17         \magnifyMusic 0.80 s
18         \magnifyMusic 1.00 s
19         \magnifyMusic 1.26 s
20         \magnifyMusic 1.59 s
21         \magnifyMusic 2.00 s
22       }
23     >>
24   }
25   \addlyrics {
26     "50%" _ _ _ _ _
27     "100%" _ _ _ _ _
28     "200%" _
29   }
30 }