]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/magnifyMusic-ties.ly
Imported Upstream version 2.19.45
[lilypond.git] / input / regression / magnifyMusic-ties.ly
1 \version "2.19.8"
2
3 \header {
4   texidoc = "Ties should be scaled along with notation size when
5 using the @code{\magnifyMusic} command.  They can get thicker than
6 the default, but not thinner."
7 }
8
9 template = {
10   \omit Staff.TimeSignature
11   \time 7/8
12   \magnifyMusic 0.50 s8
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'32[~ g' a'~ a'] }
26     >>
27     \new Staff \new Voice <<
28       \template
29       \repeat unfold 7 { \tieUp g'32[~ g' a'~ a'] }
30     >>
31     \new Lyrics \with {
32       \override VerticalAxisGroup.staff-affinity = #DOWN
33     } \lyricsto "upper" {
34       "50%" _ _ _ _ _ "100%" _ _ _ _ _ " 200%"
35     }
36     \new Staff \new Voice <<
37       \clef bass
38       \template
39       \repeat unfold 7 { f32[~ f e~ e] }
40     >>
41     \new Staff \new Voice <<
42       \clef bass
43       \template
44       \repeat unfold 7 { \tieDown f32[~ f e~ e] }
45     >>
46   >>
47 }