]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/changing-the-appearance-of-a-slur-from-solid-to-dotted-or-dashed.ly
resolve merge
[lilypond.git] / Documentation / snippets / changing-the-appearance-of-a-slur-from-solid-to-dotted-or-dashed.ly
diff --git a/Documentation/snippets/changing-the-appearance-of-a-slur-from-solid-to-dotted-or-dashed.ly b/Documentation/snippets/changing-the-appearance-of-a-slur-from-solid-to-dotted-or-dashed.ly
new file mode 100644 (file)
index 0000000..dd0eee1
--- /dev/null
@@ -0,0 +1,39 @@
+%% DO NOT EDIT this file manually; it is automatically
+%% generated from LSR http://lsr.dsi.unimi.it
+%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
+%% and then run scripts/auxiliar/makelsr.py
+%%
+%% This file is in the public domain.
+\version "2.14.0"
+
+\header {
+  lsrtags = "expressive-marks, editorial-annotations"
+
+%% Translation of GIT committish: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c
+  texidoces = "
+Se puede cambiar el aspecto de las ligaduras de expresión de
+continuas a punteadas o intermitentes.
+
+"
+  doctitlees = "Modificar el aspecto continuo de una ligadura de expresión a punteado o intermitente"
+
+  texidoc = "
+The appearance of slurs may be changed from solid to dotted or dashed.
+
+"
+  doctitle = "Changing the appearance of a slur from solid to dotted or dashed"
+} % begin verbatim
+
+\relative c' {
+  c4( d e c)
+  \slurDotted
+  c4( d e c)
+  \slurSolid
+  c4( d e c)
+  \slurDashed
+  c4( d e c)
+  \slurSolid
+  c4( d e c)
+}
+
+