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