]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/adjusting-grace-note-spacing.ly
lilypond-manuals.css: edit color scheme and some spacing
[lilypond.git] / Documentation / snippets / adjusting-grace-note-spacing.ly
index 7bbf0fdbeed3777c1e0ed67e882b74596eb044f7..69e2658b3c3163bbc436844b74b09f4f061bae4c 100644 (file)
@@ -1,22 +1,13 @@
 %% DO NOT EDIT this file manually; it is automatically
-%% generated from LSR http://lsr.dsi.unimi.it
+%% generated from LSR http://lsr.di.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"
+\version "2.18.0"
 
 \header {
-  lsrtags = "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"
+  lsrtags = "rhythms, tweaks-and-overrides"
 
   texidoc = "
 The space given to grace notes can be adjusted using the
@@ -26,7 +17,6 @@ The space given to grace notes can be adjusted using the
   doctitle = "Adjusting grace note spacing"
 } % begin verbatim
 
-
 graceNotes = {
   \grace { c4 c8 c16 c32 }
   c8
@@ -35,9 +25,8 @@ graceNotes = {
 \relative c'' {
   c8
   \graceNotes
-  \override Score.GraceSpacing #'spacing-increment = #2.0
+  \override Score.GraceSpacing.spacing-increment = #2.0
   \graceNotes
-  \revert Score.GraceSpacing #'spacing-increment
+  \revert Score.GraceSpacing.spacing-increment
   \graceNotes
 }
-