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