]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/merging-multi-measure-rests-in-a-polyphonic-part.ly
lilypond-book robustness: ensure EOL at the end of @verbatim
[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.13.1"
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
17 normalPos = \revert MultiMeasureRest #'staff-position
18
19 {
20   <<
21     {
22       c''1
23       R1
24       c''1
25       \normalPos
26       R1
27     }
28     \\
29     {
30       c'1
31       R1
32       c'1
33       \normalPos
34       R1
35     }
36   >>
37 }
38