blob: a1c026111be260d58023637506b23dcc1d94a652 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
% DO NOT EDIT this file manually; it is automatically
% generated from Documentation/snippets/new
% Make any changes in Documentation/snippets/new/
% and then run scripts/auxiliar/makelsr.py
%
% This file is in the public domain.
%% Note: this file works from version 2.14.0
\version "2.14.0"
\header {
%% Translation of GIT committish: 8b93de6ce951b7b14bc7818f31019524295b990f
texidoces = "
Es posible ajustar la separación en las indicaciones de tesitura.
"
doctitlees = "Modificación de la separación en las indicaciones de tesitura"
%% Translation of GIT committish: 31097723b2b816696ad61696630a80ff17a39557
texidocfr = "L'affichage d'un @emph{ambitus} peut s'affiner pour
répondre à vos préférences en matière d'esthétique.
"
doctitlefr = "Réglage de l'affichage d'un ambitus"
= "pitches"
= "It is possible to change the default gap setting for
ambitus."
= "Changing the ambitus gap"
} % begin verbatim
\layout {
\context {
\Voice
\consists "Ambitus_engraver"
}
}
\new Staff {
\time 2/4
% Default setting
c'4 g''
}
\new Staff {
\time 2/4
\override AmbitusLine #'gap = #0
c'4 g''
}
\new Staff {
\time 2/4
\override AmbitusLine #'gap = #1
c'4 g''
}
\new Staff {
\time 2/4
\override AmbitusLine #'gap = #1.5
c'4 g''
}
|