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