]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/hiding-the-extender-line-for-text-dynamics.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / Documentation / snippets / hiding-the-extender-line-for-text-dynamics.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.14.0"
8
9 \header {
10   lsrtags = "expressive-marks"
11
12 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
13   texidoces = "
14 Los cambios de dinámica con estilo de texto (como cresc. y dim.)
15 se imprimen con una línea intermitente que muestra su alcance.
16 Esta línea se puede suprimir de la siguiente manera:
17
18 "
19   doctitlees = "Ocultar la línea de extensión de las expresiones textuales de dinámica"
20
21
22 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
23 texidocde = "
24 Dynamik-Texte (wie cresc. und dim.) werden mit einer gestrichelten Linie
25 gesetzt, die ihre Dauer anzeigt.  Diese Linie kann auf folgende Weise
26 unterdrückt werden:
27
28 "
29   doctitlede = "Crescendo-Linien von Dynamik-Texten unterdrücken"
30
31 %% Translation of GIT committish: 217cd2b9de6e783f2a5c8a42be9c70a82195ad20
32   texidocfr = "
33 Les crescendos et decrescendos indiqués textuellement -- tels que
34 @emph{cresc.} ou @emph{dim.} -- sont suivis de pointillés qui montrent
35 leur étendue.  On peut empêcher l'impression de ces pointillés avec :
36
37 "
38   doctitlefr = "Masquage de l'extension des nuances textuelles"
39
40
41   texidoc = "
42 Text style dynamic changes (such as cresc. and dim.) are printed with a
43 dashed line showing their extent.  This line can be suppressed in the
44 following way:
45
46 "
47   doctitle = "Hiding the extender line for text dynamics"
48 } % begin verbatim
49
50 \relative c'' {
51   \override DynamicTextSpanner #'style = #'none
52   \crescTextCresc
53   c1\< | d | b | c\!
54 }
55