X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fadjusting-grace-note-spacing.ly;fp=Documentation%2Fsnippets%2Fadjusting-grace-note-spacing.ly;h=693b47c48c97b23310d55605b0b87da81a6c5512;hb=e90f0536f9be39ada0bef0aeb0d275dec3b2fb5b;hp=0000000000000000000000000000000000000000;hpb=a8c9e8a7ca320ab0df5fd32e717fd62cd7635ce6;p=lilypond.git diff --git a/Documentation/snippets/adjusting-grace-note-spacing.ly b/Documentation/snippets/adjusting-grace-note-spacing.ly new file mode 100644 index 0000000000..693b47c48c --- /dev/null +++ b/Documentation/snippets/adjusting-grace-note-spacing.ly @@ -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 +} +