]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/hiding-the-extender-line-for-text-dynamics.ly
Merge branch 'lilypond/translation' of ssh://jomand@git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / Documentation / snippets / hiding-the-extender-line-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.4"
5
6 \header {
7   lsrtags = "expressive-marks"
8
9 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
10   texidoces = "
11 Los cambios de dinámica con estilo de texto (como cresc. y dim.)
12 se imprimen con una línea intermitente que muestra su alcance.
13 Esta línea se puede suprimir de la siguiente manera:
14
15 "
16   doctitlees = "Ocultar la línea de extensión de las expresiones textuales de dinámica"
17
18
19 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
20 texidocde = "
21 Dynamik-Texte (wie cresc. und dim.) werden mit einer gestrichelten Linie
22 gesetzt, die ihre Dauer anzeigt.  Diese Linie kann auf foldenge Weise
23 unterdrückt werden:
24
25 "
26   doctitlede = "Crescendo-Linien von Dynamik-Texten unterdrücken"
27
28   texidoc = "
29 Text style dynamic changes (such as cresc. and dim.) are printed with a
30 dashed line showing their extent.  This line can be suppressed in the
31 following way:
32
33 "
34   doctitle = "Hiding the extender line for text dynamics"
35 } % begin verbatim
36
37 \relative c'' {
38   \override DynamicTextSpanner #'dash-period = #-1.0
39   \crescTextCresc
40   c1\< | d | b | c\!
41 }
42