]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-the-appearance-of-a-slur-from-solid-to-dotted-or-dashed.ly
8321f795ee2610c13bf35d1326a5cdc3a2a71842
[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.14.2"
8
9 \header {
10   lsrtags = "editorial-annotations, really-simple, connecting-notes, expressive-marks"
11
12 %% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
13   texidoces = "
14 Se puede cambiar el aspecto de las ligaduras de expresión de
15 continuas a punteadas o intermitentes.
16
17 "
18   doctitlees = "Modificar el aspecto continuo de una ligadura de expresión a punteado o intermitente"
19
20   texidoc = "
21 The appearance of slurs may be changed from solid to dotted or dashed.
22
23 "
24   doctitle = "Changing the appearance of a slur from solid to dotted or dashed"
25 } % begin verbatim
26
27
28 \relative c' {
29   c4( d e c)
30   \slurDotted
31   c4( d e c)
32   \slurSolid
33   c4( d e c)
34   \slurDashed
35   c4( d e c)
36   \slurSolid
37   c4( d e c)
38 }
39
40