]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/hiding-the-extender-line-for-text-dynamics.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[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.16.0"
8
9 \header {
10   lsrtags = "expressive-marks"
11
12   texidoc = "
13 Text style dynamic changes (such as cresc. and dim.) are printed with a
14 dashed line showing their extent.  This line can be suppressed in the
15 following way:
16
17 "
18   doctitle = "Hiding the extender line for text dynamics"
19 } % begin verbatim
20
21
22 \relative c'' {
23   \override DynamicTextSpanner #'style = #'none
24   \crescTextCresc
25   c1\< | d | b | c\!
26 }