]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/ambitus-gap.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / ambitus-gap.ly
1 \version "2.17.6"
2
3 \header {
4   texidoc = "The gaps between an @code{AmbitusLine} and its
5 note heads are set by the @code{gap} property. By default,
6 @code{gap} is a function that reduces the gap for small intervals
7 (e.g. a fourth), so that the line remains visible."
8 }
9
10 \layout {
11   \context {
12     \Voice
13     \consists "Ambitus_engraver"
14   }
15 }
16
17 \new Staff {
18   \time 2/4
19   \override AmbitusLine.gap = #1
20   c'4 g''
21 }
22
23 \new Staff <<
24   \time 2/4
25   { d'' g'' }
26   \\
27   { c' g' }
28 >>