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