From: David Kastrup Date: Mon, 27 May 2013 14:47:01 +0000 (+0200) Subject: Issue 3380: Fix merging-multi-measure-rests-in-a-polyphonic-part.ly snippet X-Git-Tag: release/2.17.20-1~23 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=5ea27294ad793285ea96cd3c9251ec17296dcb76;p=lilypond.git Issue 3380: Fix merging-multi-measure-rests-in-a-polyphonic-part.ly snippet This changed behavior after issue 3307 --- 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 index 0000000000..3330291ff9 --- /dev/null +++ b/Documentation/snippets/new/merging-multi-measure-rests-in-a-polyphonic-part.ly @@ -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 + } + >> +}