]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-text-and-spanner-styles-for-text-dynamics.ly
Change stringTunings from list of semitones to list of pitches
[lilypond.git] / Documentation / snippets / changing-text-and-spanner-styles-for-text-dynamics.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.39"
5
6 \header {
7   lsrtags = "expressive-marks"
8
9 %% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00
10   texidoces = "
11 Se puede modificar el texto empleado para los crescendos y
12 decrescendos modificando las propiedades de contexto
13 @code{crescendoText} y @code{decrescendoText}.  El estilo de la
14 línea de extensión se puede cambiar modificando la propiedad
15 @code{'style} de @code{DynamicTextSpanner}.  El valor
16 predeterminado es @code{'hairpin} (regulador), y entre otros
17 valores posibles se encuentran @code{'line} (línea),
18 @code{'dashed-line} (línea discontinua) y @code{'dotted-line}
19 (línea de puntos):
20
21 "
22   doctitlees = "Cambiar el texto y los estilos de objeto de extensión para las indicaciones dinámicas textuales"
23
24
25 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
26 texidocde = "
27 Der Text, der für Crescendo und Decrescendo gesetzt wird, kann geändert
28 werden, indem man die Eigenschaften @code{crescendoText} und
29 @code{decrescendoText} verändert.  Der Stil des Streckers kann auch
30 geändert werden, indem die @code{'style}-Eigenschaft des
31 @code{DynamicTextSpanner} beeinflusst wird.  Der Standardwert ist
32 @code{'hairpin}, andere Möglichkeiten sind @code{'line}, @code{'dashed-line}
33 und @code{'dotted-line}.
34 "
35   doctitlede = "Text und Strecker-Stile für Dynamik-Texte ändern"
36
37 %% Translation of GIT committish: 4ab2514496ac3d88a9f3121a76f890c97cedcf4e
38   texidocfr = "
39 Le texte par défaut des crescendos et decrescendos se change en
40 modifiant les propriétés de contexte @code{crescendoText} et
41 @code{decrescendoText}. L'aspect de la ligne d'extension est fonction
42 de la propriété @code{'style} du @code{DynamicTextSpanner}.  Sa valeur
43 par défaut est @code{'hairpin}, mais d'autres valeurs sont disponibles,
44 comme @code{'line}, @code{'dashed-line} et @code{'dotted-line}.
45
46 "
47   doctitlefr = "Modifidation du texte et de l'extension de nuances textuelles"
48
49
50   texidoc = "
51 The text used for crescendos and decrescendos can be changed by
52 modifying the context properties @code{crescendoText} and
53 @code{decrescendoText}. The style of the spanner line can be changed by
54 modifying the @code{'style} property of @code{DynamicTextSpanner}.  The
55 default value is @code{'hairpin}, and other possible values include
56 @code{'line}, @code{'dashed-line} and @code{'dotted-line}.
57
58 "
59   doctitle = "Changing text and spanner styles for text dynamics"
60 } % begin verbatim
61
62 \relative c'' {
63   \set crescendoText = \markup { \italic { cresc. poco } }
64   \set crescendoSpanner = #'text
65   \override DynamicTextSpanner #'style = #'dotted-line
66   a2\< a
67   a2 a
68   a2 a
69   a2 a\mf
70 }