]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/changing-text-and-spanner-styles-for-text-dynamics.ly
Split WWW target in two stages WWW-1 and WWW-2
[lilypond.git] / input / lsr / changing-text-and-spanner-styles-for-text-dynamics.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.11.46"
4
5 \header {
6   lsrtags = "expressive-marks"
7
8   texidoc = "
9 The text used for crescendos and decrescendos can be changed by
10 modifying the context properties @code{crescendoText} and
11 @code{decrescendoText}.  The style of the spanner line can be changed
12 by modifying the context properties @code{crescendoSpanner} and
13 @code{decrescendoSpanner}.  Available values for the spanner properties
14 are @code{'hairpin}, @code{'line}, @code{'dashed-line}, and
15 @code{'dotted-line}. If unset, a hairpin crescendo is used: 
16
17 "
18   doctitle = "Changing text and spanner styles for text dynamics"
19 } % begin verbatim
20 \relative c'' {
21   \set crescendoText = \markup { \italic { cresc. poco } }
22   \set crescendoSpanner = #'dotted-line
23   a2\< a
24   a2 a
25   a2 a
26   a2 a\mf
27 }