]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/tweaking-grace-layout-within-music.ly
lilypond-book robustness: ensure EOL at the end of @verbatim
[lilypond.git] / input / lsr / tweaking-grace-layout-within-music.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, tweaks-and-overrides"
7
8 %% Translation of GIT committish: 5a33019d8b4a837f564eadd4979501ff07e9dfd5
9   texidoces = "
10
11 La disposición de las expresiones de adorno se puede cambiar a lo
12 largo de toda la música usando las funciones
13 @code{add-grace-property} y @code{remove-grace-property}.  El
14 ejemplo siguiente borra la definición de la dirección de la plica
15 para esta nota de adorno, de manera que las plicas no siemmpre
16 apuntan hacia arriba, y cambia la forma predeterminada de las
17 cabezas a aspas.
18
19 "
20
21   doctitlees = "Trucar la disposición de las notas de adorno dentro de la música"
22
23
24 %% Translation of GIT committish: 13ac9d1dfbcc297166948ee396e9ade078d2446e
25   texidocde = "
26 Das Layout von Verzierungsausdrücken kann in der Musik verändert
27 werden mit den Funktionen @code{add-grace-property} und
28 @code{remove-grace-property}.  Das folgende Beispiel definiert
29 die Richtung von Hälsen (Stem) für diese Verzierung, sodass die
30 Hälse nicht immer nach unten zeigen, und ändert den Standardnotenkopf
31 in ein Kreuz.
32 "
33   doctitlede = "Veränderung des Layouts von Verzierungen innerhalb der Noten"
34
35   texidoc = "
36 The layout of grace expressions can be changed throughout the music
37 using the functions @code{add-grace-property} and
38 @code{remove-grace-property}. The following example undefines the
39 @code{Stem} direction for this grace, so that stems do not always point
40 up, and changes the default note heads to crosses. 
41
42 "
43   doctitle = "Tweaking grace layout within music"
44 } % begin verbatim
45
46 \relative c'' {
47   \new Staff {
48     #(remove-grace-property 'Voice 'Stem 'direction)
49     #(add-grace-property 'Voice 'NoteHead 'style 'cross)
50     \new Voice {
51        \acciaccatura { f16 } g4
52        \grace { d16[ e] } f4
53        \appoggiatura { f,32[ g a] } e2
54     }
55   }
56 }