]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/changing-text-and-spanner-styles-for-text-dynamics.ly
Doc-es: pre-merge update of texidoc committishes.
[lilypond.git] / input / lsr / changing-text-and-spanner-styles-for-text-dynamics.ly
1 %% Do not edit this file; it is auto-generated from input/new
2 %% This file is in the public domain.
3 %% Note: this file works from version 2.12.0
4 \version "2.12.0"
5 \header {
6 %% Translation of GIT committish: 740b9a6c16eb30a84b216d23aeb848aa1b632be6
7   texidoces = "
8 Se puede modificar el texto empleado para los crescendos y
9 decrescendos modificando las propiedades de contexto
10 @code{crescendoText} y @code{decrescendoText}.  El estilo de la
11 línea de extensión se puede cambiar modificando la propiedad
12 @code{'style} de @code{DynamicTextSpanner}.  El valor
13 predeterminado es @code{'hairpin} (regulador), y entre otros
14 valores posibles se encuentran @code{'line} (línea),
15 @code{'dashed-line} (línea discontinua) y @code{'dotted-line}
16 (línea de puntos):
17
18 "
19   doctitlees = "Cambiar el texto y los estilos de objeto de extensión para las indicaciones dinámicas textuales"
20   
21 %% Translation of GIT committish: 6ce7f350682dfa99af97929be1dec6b9f1cbc01a
22 texidocde = "
23 Der Text, der für Crescendo und Decrescendo gestzt wird, kann geändert
24 werden, indem man die Eigenschaften @code{crescendoText} und
25 @code{decrescendoText} verändert.  Der Stil des Streckers kann auch
26 geändert werden, indem die @code{'style}-Eigenschaft des
27 @code{DynamicTextSpanner} beeinflusst wird.  Der Standardwert ist
28 @code{'hairpin}, ander Möglichkeiten sind @code{'line}, @code{'dashed-line}
29 und @code{'dotted-line}:
30 "
31   doctitlede = "Text und Strecker-Stile für Dynamik-Texte ändern"
32
33   lsrtags = "rhythms,tweaks-and-overrides"
34   texidoc = "
35 The text used for crescendos and decrescendos can be changed by
36 modifying the context properties @code{crescendoText} and
37 @code{decrescendoText}.  The style of the spanner line can be
38 changed by modifying the @code{'style} property of
39 @code{DynamicTextSpanner}.  The default value is @code{'hairpin},
40 and other possible values include @code{'line}, @code{'dashed-line}
41 and @code{'dotted-line}:
42 "
43   doctitle = "Changing text and spanner styles for text dynamics"
44 } % begin verbatim
45
46
47 \relative c'' {
48   \set crescendoText = \markup { \italic { cresc. poco } }
49   \set crescendoSpanner = #'text
50   \override DynamicTextSpanner #'style = #'dotted-line
51   a2\< a
52   a2 a
53   a2 a
54   a2 a\mf
55 }