]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/adjusting-grace-note-spacing.ly
Change stringTunings from list of semitones to list of pitches
[lilypond.git] / Documentation / snippets / adjusting-grace-note-spacing.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.39"
5
6 \header {
7   lsrtags = "rhythms, tweaks-and-overrides"
8
9 %% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00
10   texidoces = "
11 Se puede ajustar la separaciĆ³n entre las notas de adorno utilizando la
12 propiedad @code{spacing-increment} de @code{Score.GraceSpacing}.
13
14 "
15
16   doctitlees = "Ajuste del espaciado de las notas de adorno"
17
18   texidoc = "
19 The space given to grace notes can be adjusted using the
20 @code{spacing-increment} property of @code{Score.GraceSpacing}.
21
22 "
23   doctitle = "Adjusting grace note spacing"
24 } % begin verbatim
25
26 graceNotes = {
27   \grace { c4 c8 c16 c32 }
28   c8
29 }
30
31 \relative c'' {
32   c8
33   \graceNotes
34   \override Score.GraceSpacing #'spacing-increment = #2.0
35   \graceNotes
36   \revert Score.GraceSpacing #'spacing-increment
37   \graceNotes
38 }
39