]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/adjusting-grace-note-spacing.ly
Imported Upstream version 2.14.2
[lilypond.git] / Documentation / snippets / adjusting-grace-note-spacing.ly
diff --git a/Documentation/snippets/adjusting-grace-note-spacing.ly b/Documentation/snippets/adjusting-grace-note-spacing.ly
new file mode 100644 (file)
index 0000000..693b47c
--- /dev/null
@@ -0,0 +1,42 @@
+%% 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.0"
+
+\header {
+  lsrtags = "rhythms, tweaks-and-overrides"
+
+%% Translation of GIT committish: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c
+  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"
+
+  texidoc = "
+The space given to grace notes can be adjusted using the
+@code{spacing-increment} property of @code{Score.GraceSpacing}.
+
+"
+  doctitle = "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
+}
+