]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/new/changing-the-ambitus-gap.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / Documentation / snippets / new / changing-the-ambitus-gap.ly
1 \version "2.14.0"
2 \header {
3   lsrtags = "pitches"
4   texidoc = "It is possible to change the default gap setting for
5 ambitus."
6
7   doctitle = "Changing the ambitus gap"
8 }
9
10
11 \layout {
12   \context {
13     \Voice
14     \consists "Ambitus_engraver"
15   }
16 }
17
18 \new Staff {
19   \time 2/4
20   % Default setting
21   c'4 g''
22 }
23
24 \new Staff {
25   \time 2/4
26   \override AmbitusLine #'gap = #0
27   c'4 g''
28 }
29
30 \new Staff {
31   \time 2/4
32   \override AmbitusLine #'gap = #1
33   c'4 g''
34 }
35
36 \new Staff {
37   \time 2/4
38   \override AmbitusLine #'gap = #1.5
39   c'4 g''
40 }