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