]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/adjusting-grace-note-spacing.ly
0bb1d175b64c9ffbba8815031f2f15f96ba2542f
[lilypond.git] / Documentation / snippets / adjusting-grace-note-spacing.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 = "tweaks-and-overrides, rhythms"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
13   texidoces = "
14 Se puede ajustar la separación entre las notas de adorno utilizando la
15 propiedad @code{spacing-increment} de @code{Score.GraceSpacing}.
16
17 "
18
19   doctitlees = "Ajuste del espaciado de las notas de adorno"
20
21 %% Translation of GIT committish: f5cfaf8ef4ac347702f554af0944ef0d8396e73a
22   texidocfr = "
23 La propriété @code{spacing-increment} de @code{Score.GraceSpacing}
24 permet d'ajuster l'espacement d'un groupe de notes d'ornement.
25
26 "
27   doctitlefr = "Ajustement de l'espacement des notes d'ornement"
28
29   texidoc = "
30 The space given to grace notes can be adjusted using the
31 @code{spacing-increment} property of @code{Score.GraceSpacing}.
32
33 "
34   doctitle = "Adjusting grace note spacing"
35 } % begin verbatim
36
37
38 graceNotes = {
39   \grace { c4 c8 c16 c32 }
40   c8
41 }
42
43 \relative c'' {
44   c8
45   \graceNotes
46   \override Score.GraceSpacing #'spacing-increment = #2.0
47   \graceNotes
48   \revert Score.GraceSpacing #'spacing-increment
49   \graceNotes
50 }
51