]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/tweaking-grace-layout-within-music.ly
Doc: Update LSR.
[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.16"
5
6 \header {
7   lsrtags = "rhythms, tweaks-and-overrides"
8
9 %% Translation of GIT committish: d2119a9e5e951c6ae850322f41444ac98d1ed492
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 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
26   texidocde = "
27 Das Layout von Verzierungsausdrücken kann in der Musik verändert
28 werden mit den Funktionen @code{add-grace-property} und
29 @code{remove-grace-property}.  Das folgende Beispiel definiert
30 die Richtung von Hälsen (Stem) für diese Verzierung, sodass die
31 Hälse nicht immer nach unten zeigen, und ändert den Standardnotenkopf
32 in ein Kreuz.
33 "
34   doctitlede = "Veränderung des Layouts von Verzierungen innerhalb der Noten"
35
36
37 %% Translation of GIT committish: 374d57cf9b68ddf32a95409ce08ba75816900f6b
38   texidocfr = "
39 Il est possible de changer globalement la mise en forme des petites
40 notes dans un morceau, au moyen de la fonction
41 @code{add-grace-property}.  Ici, par exemple, on ôte la définition de
42 l'orientation des objets @code{Stem} pour toutes les petites notes,
43 afin que les hampes ne soient pas toujours orientées vers le haut, et on
44 leur préfère des têtes en forme de croix.
45
46 "
47   doctitlefr = "Mise en forme des notes d'ornement"
48
49   texidoc = "
50 The layout of grace expressions can be changed throughout the music
51 using the functions @code{add-grace-property} and
52 @code{remove-grace-property}. The following example undefines the
53 @code{Stem} direction for this grace, so that stems do not always point
54 up, and changes the default note heads to crosses.
55
56 "
57   doctitle = "Tweaking grace layout within music"
58 } % begin verbatim
59
60 \relative c'' {
61   \new Staff {
62     #(remove-grace-property 'Voice 'Stem 'direction)
63     #(add-grace-property 'Voice 'NoteHead 'style 'cross)
64     \new Voice {
65        \acciaccatura { f16 } g4
66        \grace { d16[ e] } f4
67        \appoggiatura { f,32[ g a] } e2
68     }
69   }
70 }