]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-the-ambitus-gap.ly
fce41fe4033ee95356120c32ce50d68cd881752a
[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.36
5 \version "2.13.40"
6 \header {
7 %% Translation of GIT committish: 298a2c322d7e4f437f3dd1a24db2839e3f35acce
8
9   texidoces = "
10 Es posible ajustar la separación en las indicaciones de tesitura.
11
12 "
13
14   doctitlees = "Modificación de la separación en las indicaciones de tesitura"
15
16 %% Translation of GIT committish: 31097723b2b816696ad61696630a80ff17a39557
17   texidocfr = "L'affichage d'un @emph{ambitus} peut s'affiner pour
18   répondre à vos préférences en matière d'esthétique.
19 "
20
21   doctitlefr = "Réglage de l'affichage d'un ambitus"
22
23
24   lsrtags = "pitches"
25   texidoc = "It is possible to change the default gap setting for
26 ambitus."
27
28   doctitle = "Changing the ambitus gap"
29 } % begin verbatim
30
31
32
33 \layout {
34   \context {
35     \Voice
36     \consists "Ambitus_engraver"
37   }
38 }
39
40 \new Staff {
41   \time 2/4
42   % Default setting
43   c'4 g''
44 }
45
46 \new Staff {
47   \time 2/4
48   \override AmbitusLine #'gap = #0
49   c'4 g''
50 }
51
52 \new Staff {
53   \time 2/4
54   \override AmbitusLine #'gap = #1
55   c'4 g''
56 }
57
58 \new Staff {
59   \time 2/4
60   \override AmbitusLine #'gap = #1.5
61   c'4 g''
62 }