]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/magnifyMusic-laissez-vibrer-ties.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / magnifyMusic-laissez-vibrer-ties.ly
1 \version "2.19.8"
2
3 \header {
4   texidoc = "Laissez vibrer ties should be scaled along with
5 notation size when using the @code{\magnifyMusic} command.  They
6 can get thicker than the default, but not thinner."
7 }
8
9 template = {
10   \omit Staff.TimeSignature
11   \time 7/2
12   \magnifyMusic 0.50 s2
13   \magnifyMusic 0.63 s
14   \magnifyMusic 0.80 s
15   \magnifyMusic 1.00 s
16   \magnifyMusic 1.26 s
17   \magnifyMusic 1.59 s
18   \magnifyMusic 2.00 s
19 }
20
21 \score {
22   \new StaffGroup <<
23     \new Staff \new Voice = "upper" <<
24       \template
25       \repeat unfold 7 { g'4\laissezVibrer \hide Rest r4 }
26     >>
27     \new Lyrics \with {
28       \override VerticalAxisGroup.staff-affinity = #DOWN
29     } \lyricsto "upper" {
30       " 50%" \skip 1 \skip 1 " 100%" \skip 1 \skip 1 " 200%"
31     }
32     \new Staff \new Voice <<
33       \clef bass
34       \template
35       \repeat unfold 7 { f4\laissezVibrer \hide Rest r4 }
36     >>
37   >>
38 }