]> git.donarmstrong.com Git - lilypond.git/commitdiff
Issue 3380: Fix merging-multi-measure-rests-in-a-polyphonic-part.ly snippet
authorDavid Kastrup <dak@gnu.org>
Mon, 27 May 2013 14:47:01 +0000 (16:47 +0200)
committerDavid Kastrup <dak@gnu.org>
Mon, 3 Jun 2013 07:43:16 +0000 (09:43 +0200)
This changed behavior after issue 3307

Documentation/snippets/new/merging-multi-measure-rests-in-a-polyphonic-part.ly [new file with mode: 0644]

diff --git a/Documentation/snippets/new/merging-multi-measure-rests-in-a-polyphonic-part.ly b/Documentation/snippets/new/merging-multi-measure-rests-in-a-polyphonic-part.ly
new file mode 100644 (file)
index 0000000..3330291
--- /dev/null
@@ -0,0 +1,35 @@
+\version "2.17.18"
+
+\header {
+  lsrtags = "really-simple, rhythms, version-specific"
+
+  texidoc = "
+When using multi-measure rests in a polyphonic staff, the rests will be
+placed differently depending on the voice they belong to. However they
+can be printed on the same staff line, using the following setting.
+
+"
+  doctitle = "Merging multi-measure rests in a polyphonic part"
+}
+
+normalPos = \revert MultiMeasureRest.direction
+
+{
+  <<
+    {
+      c''1
+      R1
+      c''1
+      \normalPos
+      R1
+    }
+    \\
+    {
+      c'1
+      R1
+      c'1
+      \normalPos
+      R1
+    }
+  >>
+}