]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/slur-extreme.ly
Split WWW target in two stages WWW-1 and WWW-2
[lilypond.git] / input / regression / slur-extreme.ly
1
2 \version "2.10.0"
3
4 \header {
5
6     texidoc="
7 Extreme slurs are scaled to fit the pattern, but only  symmetrically.
8 Asymmetric slurs are created by setting @code{eccentricity}."
9
10 }
11 \layout {
12     ragged-right = ##t
13 }
14
15 baseWalk =  \relative c {
16     \time 6/4
17     \stemDown
18     \slurUp
19     d,8[( a' d f] a[ d f d] a[ f d  a)]
20     d,8[( a' d f] a[ a a d] f[ d d,  a)]
21     \once\override Slur #'eccentricity = #6.0
22     d,8[( a' d f] a[ a a d] f[ d d,  a)]
23 }
24
25 \context PianoStaff 
26     \autochange \baseWalk
27
28