]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/slur-broken-trend.ly
* scm/define-grobs.scm: switch on new-slur by default.
[lilypond.git] / input / regression / slur-broken-trend.ly
1
2 \version "2.3.4"
3
4 \header{
5 texidoc="
6 Across line breaks, slurs behave nicely.  On the left, they extend to
7 just after the preferatory matter, and on the right to the end of the
8 staff.  A slur should follow the same vertical direction it would have
9 in unbroken state.
10 "
11 }
12 \paper {
13     linewidth=40.\mm
14     indent=0.
15 }
16
17 \relative c''{
18     \override Slur #'after-line-breaking-callback = #New_slur::after_line_breaking
19     \override Slur #'print-function = #New_slur::print     
20     \override Slur #'height = ##f
21     
22     e1( \break a,)
23     \time 2/4
24     e'2( \break a,)(\break
25     a2\break
26     e'2)
27     \time 4/4
28     << d1_(\trill
29        { s2 \grace {
30            c16[ d] 
31        } }
32      >>
33     \break 
34     c4)
35 }
36