]> 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 LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.12.3"
4
5 \header {
6   lsrtags = "expressive-marks"
7
8   texidoces = "
9 Se puede modificar el texto empleado para los crescendos y
10 decrescendos modificando las propiedades de contexto
11 @code{crescendoText} y @code{decrescendoText}.  El estiloo de la
12 línea de extensión se puede cambiar modificando la propiedad
13 @code{'style} de @code{DynamicTextSpanner}.  El valor
14 predeterminado es @code{'hairpin} (regulador), y entre otros
15 valores posibles se encuentran @code{'line} (línea),
16 @code{'dashed-line} (línea intermitente) y @code{'dotted-line}
17 (línea de puntos):
18
19 "
20   doctitlees = "Cambiar el texto y los estilos de objeto de extensión para las indicaciones dinámicas textuales"
21   
22 %% Translation of GIT committish :<6ce7f350682dfa99af97929be1dec6b9f1cbc01a>
23 texidocde = "
24 Der Text, der für Crescendo und Decrescendo gestzt wird, kann geändert
25 werden, indem man die Eigenschaften @code{crescendoText} und
26 @code{decrescendoText} verändert.  Der Stil des Streckers kann auch
27 geändert werden, indem die @code{'style}-Eigenschaft des
28 @code{DynamicTextSpanner} beeinflusst wird.  Der Standardwert ist
29 @code{'hairpin}, ander Möglichkeiten sind @code{'line}, @code{'dashed-line}
30 und @code{'dotted-line}:
31 "
32   doctitlede = "Text und Strecker-Stile für Dynamik-Texte ändern"
33
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 changed by
38 modifying the @code{'style} property of @code{DynamicTextSpanner}.  The
39 default value is @code{'hairpin}, and other possible values include
40 @code{'line}, @code{'dashed-line} and @code{'dotted-line}. 
41
42 "
43   doctitle = "Changing text and spanner styles for text dynamics"
44 } % begin verbatim
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 }