blob: 0bb1d175b64c9ffbba8815031f2f15f96ba2542f (
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
|
%% DO NOT EDIT this file manually; it is automatically
%% generated from LSR http://lsr.dsi.unimi.it
%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
%% and then run scripts/auxiliar/makelsr.py
%%
%% This file is in the public domain.
\version "2.14.2"
\header {
= "tweaks-and-overrides, rhythms"
%% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
texidoces = "
Se puede ajustar la separación entre las notas de adorno utilizando la
propiedad @code{spacing-increment} de @code{Score.GraceSpacing}.
"
doctitlees = "Ajuste del espaciado de las notas de adorno"
%% Translation of GIT committish: f5cfaf8ef4ac347702f554af0944ef0d8396e73a
texidocfr = "
La propriété @code{spacing-increment} de @code{Score.GraceSpacing}
permet d'ajuster l'espacement d'un groupe de notes d'ornement.
"
doctitlefr = "Ajustement de l'espacement des notes d'ornement"
= "
The space given to grace notes can be adjusted using the
@code{spacing-increment} property of @code{Score.GraceSpacing}.
"
= "Adjusting grace note spacing"
} % begin verbatim
graceNotes = {
\grace { c4 c8 c16 c32 }
c8
}
\relative c'' {
c8
\graceNotes
\override Score.GraceSpacing #'spacing-increment = #2.0
\graceNotes
\revert Score.GraceSpacing #'spacing-increment
\graceNotes
}
|