]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/spacing-loose-grace-linebreak.ly
c54fea3b0d5504186f08eb76912977f7474e072a
[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.12.0"
8
9 \layout {
10   \context {
11     \Score
12     \override SpacingSpanner #'strict-grace-spacing = ##t
13   }
14 }
15
16 \score {
17  <<
18
19   \new Staff <<
20
21     \new Voice {
22       \time 6/4    s2
23       s2 \bar "" \break
24       s2
25     }
26
27     \new Voice {
28       b'4
29       \afterGrace c''4 {b'16}
30       s4
31       s4
32       c''4
33     }
34     \new Voice {
35       c'4
36       c'8.
37       r16
38       c'4
39       c'4
40       c'4
41     }
42   >>
43 >>
44 }
45