]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/hiding-the-extender-line-for-text-dynamics.ly
Change stringTunings from list of semitones to list of pitches
[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.39"
5
6 \header {
7   lsrtags = "expressive-marks"
8
9 %% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00
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: 0a868be38a775ecb1ef935b079000cebbc64de40
20 texidocde = "
21 Dynamik-Texte (wie cresc. und dim.) werden mit einer gestrichelten Linie
22 gesetzt, die ihre Dauer anzeigt.  Diese Linie kann auf folgende Weise
23 unterdrückt werden:
24
25 "
26   doctitlede = "Crescendo-Linien von Dynamik-Texten unterdrücken"
27
28 %% Translation of GIT committish: 217cd2b9de6e783f2a5c8a42be9c70a82195ad20
29   texidocfr = "
30 Les crescendos et decrescendos indiqués textuellement -- tels que
31 @emph{cresc.} ou @emph{dim.} -- sont suivis de pointillés qui montrent
32 leur étendue.  On peut empêcher l'impression de ces pointillés avec :
33
34 "
35   doctitlefr = "Masquage de l'extension des nuances textuelles"
36
37
38   texidoc = "
39 Text style dynamic changes (such as cresc. and dim.) are printed with a
40 dashed line showing their extent.  This line can be suppressed in the
41 following way:
42
43 "
44   doctitle = "Hiding the extender line for text dynamics"
45 } % begin verbatim
46
47 \relative c'' {
48   \override DynamicTextSpanner #'style = #'none
49   \crescTextCresc
50   c1\< | d | b | c\!
51 }
52