]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-the-ambitus-gap.ly
Merge branch 'translation' into staging
[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 between the ambitus noteheads
14 and the line joining them.
15
16 "
17   doctitle = "Changing the ambitus gap"
18 } % begin verbatim
19
20 \layout {
21   \context {
22     \Voice
23     \consists "Ambitus_engraver"
24   }
25 }
26
27 \new Staff {
28   \time 2/4
29   % Default setting
30   c'4 g''
31 }
32
33 \new Staff {
34   \time 2/4
35   \override AmbitusLine.gap = #0
36   c'4 g''
37 }
38
39 \new Staff {
40   \time 2/4
41   \override AmbitusLine.gap = #1
42   c'4 g''
43 }
44
45 \new Staff {
46   \time 2/4
47   \override AmbitusLine.gap = #1.5
48   c'4 g''
49 }