]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/merging-multi-measure-rests-in-a-polyphonic-part.ly
LSR: Update.
[lilypond.git] / Documentation / snippets / merging-multi-measure-rests-in-a-polyphonic-part.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.4"
5
6 \header {
7   lsrtags = "rhythms"
8
9   texidoc = "
10 When using multi-measure rests in a polyphonic staff, the rests will be
11 placed differently depending on the voice they belong to. However they
12 can be printed on the same staff line, using the following setting.
13
14 "
15   doctitle = "Merging multi-measure rests in a polyphonic part"
16 } % begin verbatim
17
18 normalPos = \revert MultiMeasureRest #'staff-position
19
20 {
21   <<
22     {
23       c''1
24       R1
25       c''1
26       \normalPos
27       R1
28     }
29     \\
30     {
31       c'1
32       R1
33       c'1
34       \normalPos
35       R1
36     }
37   >>
38 }
39