]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/positioning-grace-notes-with-floating-space.ly
Doc-es: pre-merge update of texidoc committishes.
[lilypond.git] / input / lsr / positioning-grace-notes-with-floating-space.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.13.1"
4
5 \header {
6   lsrtags = "rhythms"
7
8   texidoces = "
9
10 Al establecer la propiedad @code{'strict-grace-spacing} hacemos
11 que las columnas musicales para las notas de adorno sean
12 'flotantes', es decir, desacopladas de las notas que no son de
13 adorno: primero se aplica el espaciado de las notas normales, y
14 luego se ponen las columnas musicales de las notas de adorno a la
15 izquierda de las columnas musicales de las notas principales.
16
17 "
18
19   doctitlees = "Posicionamiento de las notas de adorno con espacio flotante"
20
21   texidoc = "
22 Setting the property @code{'strict-grace-spacing} makes the musical
23 columns for grace notes 'floating', i.e., decoupled from the non-grace
24 notes: first the normal notes are spaced, then the (musical columns of
25 the) graces are put left of the musical columns for the main notes.
26
27 "
28   doctitle = "Positioning grace notes with floating space"
29 } % begin verbatim
30
31 \relative c'' {
32   <<
33     \override Score.SpacingSpanner #'strict-grace-spacing = ##t
34     \new Staff \new Voice {
35       \afterGrace c4 { c16[ c8 c16] }
36       c8[ \grace { b16[ d] } c8]
37       c4 r
38     }
39     \new Staff {
40       c16 c c c c c c c c4 r
41     }
42   >>
43 }