]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/double-glissando.ly
Imported Upstream version 2.14.2
[lilypond.git] / Documentation / snippets / double-glissando.ly
diff --git a/Documentation/snippets/double-glissando.ly b/Documentation/snippets/double-glissando.ly
new file mode 100644 (file)
index 0000000..dfae532
--- /dev/null
@@ -0,0 +1,37 @@
+%% 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, simultaneous-notes"
+
+  texidoc = "
+To connect chords with glissando lines, attach a second glissando to a
+hidden voice.
+
+"
+  doctitle = "Double glissando"
+} % begin verbatim
+
+\relative c {
+  \clef bass
+  <<
+    {
+      % new voice ( = \voiceOne), hidden
+      \hideNotes
+      % attach glissando to note heads
+      e2\glissando g
+    }
+    \\
+    {
+      % original voice with chords rearranged so that
+      % glissando is attached to a & c
+      <e a,>2\glissando <g c,>
+    }
+  >>
+}
+