]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/changing-text-and-spanner-styles-for-text-dynamics.ly
38042cde5e448b8bdc58ec91f71487a6b932eeff
[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.11.57"
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   lsrtags = "rhythms,tweaks-and-overrides"
20   texidoc = "
21 The text used for crescendos and decrescendos can be
22 changed by modifying the context properties @code{crescendoText}
23 and @code{decrescendoText}.  The style of the spanner line can
24 be changed by modifying the @code{'style} property of
25 @code{DynamicTextSpanner}.  The default value is
26 @code{'hairpin}, and other possible values include
27 @code{'line}, @code{'dashed-line}, and
28 @code{'dotted-line}:
29 "
30   doctitle = "Changing text and spanner styles for text dynamics"
31 } % begin verbatim
32
33 \relative c'' {
34   \set crescendoText = \markup { \italic { cresc. poco } }
35   \set crescendoSpanner = #'text
36   \override DynamicTextSpanner #'style = #'dotted-line
37   a2\< a
38   a2 a
39   a2 a
40   a2 a\mf
41 }