1\version "2.19.8"
2
3\header {
4  texidoc = "Repeat ties should be scaled along with notation size
5when using the @code{\magnifyMusic} command.  They can get thicker
6than the default, but not thinner."
7}
8
9template = {
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\repeatTie \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\repeatTie \hide Rest r4 }
36    >>
37  >>
38}
39