1\version "2.21.0"
2
3\header {
4  texidoc = "Ambitus can be moved to various positions with correct
5horizontal spacing in all cases."
6}
7
8\layout {
9  \context {
10    \Staff
11    \consists Ambitus_engraver
12  }
13}
14
15music = \relative {
16  \key f \major
17  \bar ".|:"
18  f' a c f
19}
20
21\new Staff {
22  \ambitusAfter key-signature
23  \music
24}
25
26\new Staff {
27  \ambitusAfter clef
28  \music
29}
30
31\new Staff {
32  \ambitusAfter time-signature
33  \music
34}
35
36\new Staff {
37  \ambitusAfter staff-bar
38  \music
39}
40