]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-the-appearance-of-a-slur-from-solid-to-dotted-or-dashed.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / Documentation / snippets / changing-the-appearance-of-a-slur-from-solid-to-dotted-or-dashed.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 = "connecting-notes, editorial-annotations, expressive-marks, really-simple"
11
12   texidoc = "
13 The appearance of slurs may be changed from solid to dotted or dashed.
14
15 "
16   doctitle = "Changing the appearance of a slur from solid to dotted or dashed"
17 } % begin verbatim
18
19
20 \relative c' {
21   c4( d e c)
22   \slurDotted
23   c4( d e c)
24   \slurSolid
25   c4( d e c)
26   \slurDashed
27   c4( d e c)
28   \slurSolid
29   c4( d e c)
30 }