]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-the-ambitus-gap.ly
Rerun scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / Documentation / snippets / changing-the-ambitus-gap.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.17.6"
8
9 \header {
10   lsrtags = "pitches"
11
12   texidoc = "
13 It is possible to change the default gap setting for ambitus.
14
15 "
16   doctitle = "Changing the ambitus gap"
17 } % begin verbatim
18
19 \layout {
20   \context {
21     \Voice
22     \consists "Ambitus_engraver"
23   }
24 }
25
26 \new Staff {
27   \time 2/4
28   % Default setting
29   c'4 g''
30 }
31
32 \new Staff {
33   \time 2/4
34   \override AmbitusLine.gap = #0
35   c'4 g''
36 }
37
38 \new Staff {
39   \time 2/4
40   \override AmbitusLine.gap = #1
41   c'4 g''
42 }
43
44 \new Staff {
45   \time 2/4
46   \override AmbitusLine.gap = #1.5
47   c'4 g''
48 }