]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/adjusting-grace-note-spacing.ly
Imported Upstream version 2.14.2
[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.0"
8
9 \header {
10   lsrtags = "rhythms, tweaks-and-overrides"
11
12 %% Translation of GIT committish: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c
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 graceNotes = {
30   \grace { c4 c8 c16 c32 }
31   c8
32 }
33
34 \relative c'' {
35   c8
36   \graceNotes
37   \override Score.GraceSpacing #'spacing-increment = #2.0
38   \graceNotes
39   \revert Score.GraceSpacing #'spacing-increment
40   \graceNotes
41 }
42