]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/spacing-loose-grace-linebreak.ly
Merge branch 'master' into dev/texi2html
[lilypond.git] / input / regression / spacing-loose-grace-linebreak.ly
1 \header{
2   texidoc = "If a floating grace spacing section attaches to a note
3 across a line break, it gets attached to the end of line."
4 }
5
6
7 \version "2.11.51"
8
9 \new Score \with {
10   \override SpacingSpanner #'strict-grace-spacing = ##t
11   \override PaperColumn #'used = ##t 
12 } <<
13
14   \new Staff <<
15
16     \new Voice {
17       \time 6/4    s2
18       s2 \bar "" \break
19       s2
20     }
21
22     \new Voice {
23       b'4
24       \afterGrace c''4 {b'16}
25       s4
26       s4
27       c''4
28     }
29     \new Voice {
30       c'4
31       c'8.
32       r16
33       c'4
34       c'4
35       c'4
36     }
37   >>
38 >>
39