]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/adjusting-grace-note-spacing.ly
645acd39e042a953177a1b26b2423a3a6245edd8
[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: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
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   texidoc = "
22 The space given to grace notes can be adjusted using the
23 @code{spacing-increment} property of @code{Score.GraceSpacing}.
24
25 "
26   doctitle = "Adjusting grace note spacing"
27 } % begin verbatim
28
29
30 graceNotes = {
31   \grace { c4 c8 c16 c32 }
32   c8
33 }
34
35 \relative c'' {
36   c8
37   \graceNotes
38   \override Score.GraceSpacing #'spacing-increment = #2.0
39   \graceNotes
40   \revert Score.GraceSpacing #'spacing-increment
41   \graceNotes
42 }
43