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