]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/tweaking-grace-layout-within-music.ly
471439e892e524bb5c7aaa0b1704551a5ccf0276
[lilypond.git] / Documentation / snippets / tweaking-grace-layout-within-music.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: 5160eccb26cee0bfd802d844233e4a8d795a1e94
10   texidoces = "
11
12 La disposición de las expresiones de adorno se puede cambiar a lo
13 largo de toda la música usando las funciones
14 @code{add-grace-property} y @code{remove-grace-property}.  El
15 ejemplo siguiente borra la definición de la dirección de la plica
16 para esta nota de adorno, de manera que las plicas no siemmpre
17 apuntan hacia arriba, y cambia la forma predeterminada de las
18 cabezas a aspas.
19
20 "
21
22   doctitlees = "Trucar la disposición de las notas de adorno dentro de la música"
23
24
25
26 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
27   texidocde = "
28 Das Layout von Verzierungsausdrücken kann in der Musik verändert
29 werden mit den Funktionen @code{add-grace-property} und
30 @code{remove-grace-property}.  Das folgende Beispiel definiert
31 die Richtung von Hälsen (Stem) für diese Verzierung, sodass die
32 Hälse nicht immer nach unten zeigen, und ändert den Standardnotenkopf
33 in ein Kreuz.
34 "
35   doctitlede = "Veränderung des Layouts von Verzierungen innerhalb der Noten"
36
37
38
39 %% Translation of GIT committish: 374d57cf9b68ddf32a95409ce08ba75816900f6b
40   texidocfr = "
41 Il est possible de changer globalement la mise en forme des petites
42 notes dans un morceau, au moyen de la fonction
43 @code{add-grace-property}.  Ici, par exemple, on ôte la définition de
44 l'orientation des objets @code{Stem} pour toutes les petites notes,
45 afin que les hampes ne soient pas toujours orientées vers le haut, et on
46 leur préfère des têtes en forme de croix.
47
48 "
49   doctitlefr = "Mise en forme des notes d'ornement"
50
51   texidoc = "
52 The layout of grace expressions can be changed throughout the music
53 using the functions @code{add-grace-property} and
54 @code{remove-grace-property}. The following example undefines the
55 @code{Stem} direction for this grace, so that stems do not always point
56 up, and changes the default note heads to crosses.
57
58 "
59   doctitle = "Tweaking grace layout within music"
60 } % begin verbatim
61
62 \relative c'' {
63   \new Staff {
64     #(remove-grace-property 'Voice 'Stem 'direction)
65     #(add-grace-property 'Voice 'NoteHead 'style 'cross)
66     \new Voice {
67        \acciaccatura { f16 } g4
68        \grace { d16[ e] } f4
69        \appoggiatura { f,32[ g a] } e2
70     }
71   }
72 }