]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/hiding-the-extender-line-for-text-dynamics.ly
9403898987b3ab41876e94d868af1e06491535e0
[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.2"
8
9 \header {
10   lsrtags = "expressive-marks"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
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: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4
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.
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
51 \relative c'' {
52   \override DynamicTextSpanner #'style = #'none
53   \crescTextCresc
54   c1\< | d | b | c\!
55 }
56