]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/new/merging-multi-measure-rests-in-a-polyphonic-part.ly
Imported Upstream version 2.18.2
[lilypond.git] / Documentation / snippets / new / merging-multi-measure-rests-in-a-polyphonic-part.ly
1 \version "2.17.18"
2
3 \header {
4   lsrtags = "really-simple, rhythms, version-specific"
5
6   texidoc = "
7 When using multi-measure rests in a polyphonic staff, the rests will be
8 placed differently depending on the voice they belong to. However they
9 can be printed on the same staff line, using the following setting.
10
11 "
12   doctitle = "Merging multi-measure rests in a polyphonic part"
13 }
14
15 normalPos = \revert MultiMeasureRest.direction
16
17 {
18   <<
19     {
20       c''1
21       R1
22       c''1
23       \normalPos
24       R1
25     }
26     \\
27     {
28       c'1
29       R1
30       c'1
31       \normalPos
32       R1
33     }
34   >>
35 }