]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-text-and-spanner-styles-for-text-dynamics.ly
04dc199273cd344183ed1514a0632716797a6832
[lilypond.git] / Documentation / snippets / changing-text-and-spanner-styles-for-text-dynamics.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.12.2"
8
9 \header {
10   lsrtags = "expressive-marks, tweaks-and-overrides"
11
12 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
13   texidoces = "
14 Se puede modificar el texto empleado para los crescendos y
15 decrescendos modificando las propiedades de contexto
16 @code{crescendoText} y @code{decrescendoText}.
17
18 El estilo de la línea de extensión se puede cambiar modificando la
19 propiedad @code{'style} de @code{DynamicTextSpanner}.  El valor
20 predeterminado es @code{'dashed-line} (línea discontinua), y entre
21 otros valores posibles se encuentran @code{'line} (línea),
22 @code{'dotted-line} (línea de puntos) y @code{'none} (nada):
23
24 "
25   doctitlees = "Cambiar el texto y los estilos de objeto de extensión para las indicaciones dinámicas textuales"
26
27
28 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
29 texidocde = "
30 Der Text, der für Crescendo und Decrescendo gesetzt wird, kann geändert
31 werden, indem man die Eigenschaften @code{crescendoText} und
32 @code{decrescendoText} verändert.  Der Stil des Streckers kann auch
33 geändert werden, indem die @code{'style}-Eigenschaft des
34 @code{DynamicTextSpanner} beeinflusst wird.  Der Standardwert ist
35 @code{'hairpin}, andere Möglichkeiten sind @code{'line}, @code{'dashed-line}
36 und @code{'dotted-line}.
37 "
38   doctitlede = "Text und Strecker-Stile für Dynamik-Texte ändern"
39
40 %% Translation of GIT committish: 4ab2514496ac3d88a9f3121a76f890c97cedcf4e
41   texidocfr = "
42 Le texte par défaut des crescendos et decrescendos se change en
43 modifiant les propriétés de contexte @code{crescendoText} et
44 @code{decrescendoText}. L'aspect de la ligne d'extension est fonction
45 de la propriété @code{'style} du @code{DynamicTextSpanner}.  Sa valeur
46 par défaut est @code{'hairpin}, mais d'autres valeurs sont disponibles,
47 comme @code{'line}, @code{'dashed-line} et @code{'dotted-line}.
48
49 "
50   doctitlefr = "Modifidation du texte et de l'extension de nuances textuelles"
51
52
53   texidoc = "
54 The text used for crescendos and decrescendos can be changed by
55 modifying the context properties @code{crescendoText} and
56 @code{decrescendoText}.
57
58 The style of the spanner line can be changed by modifying the
59 @code{'style} property of @code{DynamicTextSpanner}.  The default value
60 is @code{'dashed-line}, and other possible values include @code{'line},
61 @code{'dotted-line} and @code{'none}.
62
63 "
64   doctitle = "Changing text and spanner styles for text dynamics"
65 } % begin verbatim
66
67 \relative c'' {
68   \set crescendoText = \markup { \italic { cresc. poco } }
69   \set crescendoSpanner = #'text
70   \override DynamicTextSpanner #'style = #'dotted-line
71   a2\< a
72   a2 a
73   a2 a
74   a2 a\mf
75 }