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