]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/slur-dash.ly
*** empty log message ***
[lilypond.git] / input / regression / slur-dash.ly
1 \version "2.6.0"
2 \header {texidoc = "@cindex Slur, dotted, dashed
3 The appearance of slurs may be changed from solid to dotted or dashed.
4 "
5        } 
6
7 \relative c'{
8   c( d e  c) |
9   \slurDotted
10   c( d e  c) |
11   \slurDashed
12   c( d e  c) |
13   \override Slur #'dash-period = #2.0
14   \override Slur #'dash-fraction = #0.4
15   c( d e  c) |
16   \slurSolid
17   c( d e  c) |
18 }
19 \layout{ raggedright=##t }
20
21
22
23