]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-the-ambitus-gap.ly
Merge branch 'lilypond/translation'
[lilypond.git] / Documentation / snippets / changing-the-ambitus-gap.ly
1 % Do not edit this file; it is automatically
2 % generated from Documentation/snippets/new
3 % This file is in the public domain.
4 %% Note: this file works from version 2.13.26
5 \version "2.13.31"
6 \header {
7 %% Translation of GIT committish: 31097723b2b816696ad61696630a80ff17a39557
8   texidocfr = "L'affichage d'un @emph{ambitus} peut s'affiner pour
9   répondre à vos préférences en matière d'esthétique.
10 "
11
12   doctitlefr = "Réglage de l'affichage d'un ambitus"
13
14
15   lsrtags = "pitches"
16   texidoc = "It is possible to change the default gap setting for
17 ambitus."
18
19   doctitle = "Changing the ambitus gap"
20 } % begin verbatim
21
22
23
24 \layout {
25   \context {
26     \Voice
27     \consists "Ambitus_engraver"
28   }
29 }
30
31 \new Staff {
32   \time 2/4
33   % Default setting
34   c'4 g''
35 }
36
37 \new Staff {
38   \time 2/4
39   \override AmbitusLine #'gap = #0
40   c'4 g''
41 }
42
43 \new Staff {
44   \time 2/4
45   \override AmbitusLine #'gap = #1
46   c'4 g''
47 }
48
49 \new Staff {
50   \time 2/4
51   \override AmbitusLine #'gap = #1.5
52   c'4 g''
53 }