]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-the-appearance-of-a-slur-from-solid-to-dotted-or-dashed.ly
a26759b4770eb674d12b5c8946e2d0c7f1240794
[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 = "expressive-marks, really-simple, editorial-annotations, connecting-notes"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
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 %% Translation of GIT committish: f5cfaf8ef4ac347702f554af0944ef0d8396e73a
21   texidocfr = "
22 Une liaison d'articulation peut se présenter sous la forme d'un trait
23 continu ou discontinu, voire en pointillé.
24
25 "
26   doctitlefr = "Modification de l'aspect des liaisons d'articulation"
27
28   texidoc = "
29 The appearance of slurs may be changed from solid to dotted or dashed.
30
31 "
32   doctitle = "Changing the appearance of a slur from solid to dotted or dashed"
33 } % begin verbatim
34
35
36 \relative c' {
37   c4( d e c)
38   \slurDotted
39   c4( d e c)
40   \slurSolid
41   c4( d e c)
42   \slurDashed
43   c4( d e c)
44   \slurSolid
45   c4( d e c)
46 }
47
48