]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-the-appearance-of-a-slur-from-solid-to-dotted-or-dashed.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[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.di.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.18.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 \relative c' {
20   c4( d e c)
21   \slurDotted
22   c4( d e c)
23   \slurSolid
24   c4( d e c)
25   \slurDashed
26   c4( d e c)
27   \slurSolid
28   c4( d e c)
29 }