]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-the-appearance-of-a-slur-from-solid-to-dotted-or-dashed.ly
Docs: run convert-ly for 2.14.0.
[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.0"
8
9 \header {
10   lsrtags = "expressive-marks, editorial-annotations"
11
12 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
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 \relative c' {
28   c4( d e c)
29   \slurDotted
30   c4( d e c)
31   \slurSolid
32   c4( d e c)
33   \slurDashed
34   c4( d e c)
35   \slurSolid
36   c4( d e c)
37 }
38
39