]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/spacing-horizontal-skyline-grace.ly
Merge branch 'stable'
[lilypond.git] / input / regression / spacing-horizontal-skyline-grace.ly
1 \header{
2
3   texidoc = "Skyline horizontal spacing may fold non-adjacent columns
4 together, but they still do not collide. In this case, the arpeggio
5 and the barline do not collide."
6
7 }
8
9 \version "2.12.0"
10
11 \paper
12 {
13   ragged-right = ##t
14 }
15
16 \new Staff
17 \relative c
18 {
19   \override Score.NonMusicalPaperColumn #'stencil = #ly:paper-column::print 
20   \time 6/8
21   \clef bass
22   s2. |
23   \relative c <<
24     {
25       <des ges b des>4\arpeggio
26     }
27     \\
28     {
29       \acciaccatura ges,8 \voiceTwo ges4
30     }
31   >>
32 }