]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-the-ambitus-gap.ly
Merge branch 'master' into lilypond/translation
[lilypond.git] / Documentation / snippets / changing-the-ambitus-gap.ly
1 % DO NOT EDIT this file manually; it is automatically
2 % generated from Documentation/snippets/new
3 % Make any changes in Documentation/snippets/new/
4 % and then run scripts/auxiliar/makelsr.py
5 %
6 % This file is in the public domain.
7 %% Note: this file works from version 2.14.0
8 \version "2.14.0"
9 \header {
10 %% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
11
12   texidoces = "
13 Es posible ajustar la separación en las indicaciones de tesitura.
14
15 "
16
17   doctitlees = "Modificación de la separación en las indicaciones de tesitura"
18
19 %% Translation of GIT committish: bbf8fd2b5a3ebf20a1fdc91613dc49045a53a270
20   texidocit = "
21 È possibile cambiare le impostazioni predefinite dell'intervallo
22 dell'ambitus.
23
24 "
25   doctitleit = "Modifica dell'intervallo dell'ambitus"
26
27 %% Translation of GIT committish: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4
28   texidocfr = "
29 L'affichage d'un @emph{ambitus} peut s'affiner pour répondre à vos
30 préférences en matière d'esthétique.
31 "
32   doctitlefr = "Réglage de l'affichage d'un ambitus"
33
34
35   lsrtags = "pitches"
36   texidoc = "It is possible to change the default gap setting for
37 ambitus."
38
39   doctitle = "Changing the ambitus gap"
40 } % begin verbatim
41
42
43
44 \layout {
45   \context {
46     \Voice
47     \consists "Ambitus_engraver"
48   }
49 }
50
51 \new Staff {
52   \time 2/4
53   % Default setting
54   c'4 g''
55 }
56
57 \new Staff {
58   \time 2/4
59   \override AmbitusLine #'gap = #0
60   c'4 g''
61 }
62
63 \new Staff {
64   \time 2/4
65   \override AmbitusLine #'gap = #1
66   c'4 g''
67 }
68
69 \new Staff {
70   \time 2/4
71   \override AmbitusLine #'gap = #1.5
72   c'4 g''
73 }