]> git.donarmstrong.com Git - lilypond.git/blob - input/test/ambitus-mixed.ly
The grand \paper -> \layout, \bookpaper -> \paper renaming.
[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.3.22"
10
11 \layout {
12     raggedright = ##t
13 }
14
15 \new Staff <<
16     \new Voice \with {
17         \consists "Ambitus_engraver"
18     } \relative c'' {
19         \override Ambitus #'X-offset-callbacks
20         =  #(list (lambda (grob axis) -1.0))
21         \voiceOne
22         c4 a d e f2
23     }
24     \new Voice \with {
25         \consists "Ambitus_engraver"
26     } \relative c' {
27         \voiceTwo
28         es4 f g as b2
29     }
30 >>