]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-the-ambitus-gap.ly
1f3fc83d6387662d3271bdeba510db5e13070570
[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.14.2"
8
9 \header {
10   lsrtags = "pitches"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
13
14   texidoces = "
15 Es posible ajustar la separación en las indicaciones de tesitura.
16
17 "
18
19   doctitlees = "Modificación de la separación en las indicaciones de tesitura"
20
21 %% Translation of GIT committish: 6ae36b6f8a7cf2df5f4e46c3c06820fccd9f35e1
22   texidocit = "
23 È possibile cambiare le impostazioni predefinite dell'intervallo
24 dell'ambitus.
25
26 "
27   doctitleit = "Modifica dell'intervallo dell'ambitus"
28
29 %% Translation of GIT committish: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4
30   texidocfr = "
31 L'affichage d'un @emph{ambitus} peut s'affiner pour répondre à vos
32 préférences en matière d'esthétique.
33 "
34   doctitlefr = "Réglage de l'affichage d'un ambitus"
35
36
37   texidoc = "
38 It is possible to change the default gap setting for ambitus.
39
40 "
41   doctitle = "Changing the ambitus gap"
42 } % begin verbatim
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 }