]> git.donarmstrong.com Git - lilypond.git/blob - input/test/ambitus-mixed.ly
fix keep-inside-line on the left side (issue #130)
[lilypond.git] / input / test / ambitus-mixed.ly
1
2 \header {
3
4     texidoc = "Ambits can be added per voice. In that case, the
5 ambitus must be moved manually to prevent collisions."
6
7 }
8
9 \version "2.7.39"
10
11 \layout {
12     ragged-right = ##t
13 }
14
15 \new Staff <<
16     \new Voice \with {
17         \consists "Ambitus_engraver"
18     } \relative c'' {
19         \override Ambitus #'X-offset = #-1.0
20         \voiceOne
21         c4 a d e f2
22     }
23     \new Voice \with {
24         \consists "Ambitus_engraver"
25     } \relative c' {
26         \voiceTwo
27         es4 f g as b2
28     }
29 >>