]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/tweaking-grace-layout-within-music.ly
Merge branch 'master' of carldsorensen@git.sv.gnu.org:/srv/git/lilypond
[lilypond.git] / input / lsr / tweaking-grace-layout-within-music.ly
1 %% Do not edit this file; it is auto-generated from input/new
2 %% This file is in the public domain.
3 %% Note: this file works from version 2.12.0
4 \version "2.13.1"
5
6 \header {
7   texidoces = "
8
9 La disposición de las expresiones de adorno se puede cambiar a lo
10 largo de toda la música usando las funciones
11 @code{add-grace-property} y @code{remove-grace-property}.  El
12 ejemplo siguiente borra la definición de la dirección de la plica
13 para esta nota de adorno, de manera que las plicas no siemmpre
14 apuntan hacia arriba, y cambia la forma predeterminada de las
15 cabezas a aspas.
16
17 "
18
19   doctitlees = "Trucar la disposición de las notas de adorno dentro de la música"
20
21   lsrtags = "rhythms"
22   texidoc = "
23 The layout of grace expressions can be changed throughout the
24 music using the functions @code{add-grace-property} and
25 @code{remove-grace-property}.  The following example undefines
26 the @code{Stem} direction for this grace, so that stems do not
27 always point up, and changes the default note heads to crosses.
28 "
29   doctitle = "Tweaking grace layout within music"
30 } % begin verbatim
31
32
33 \relative c'' {
34   \new Staff {
35     #(remove-grace-property 'Voice 'Stem 'direction)
36     #(add-grace-property 'Voice 'NoteHead 'style 'cross)
37     \new Voice {
38        \acciaccatura { f16 } g4
39        \grace { d16[ e] } f4
40        \appoggiatura { f,32[ g a] } e2
41     }
42   }
43 }