]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/merging-multi-measure-rests-in-a-polyphonic-part.ly
8cacc7ba9000e6a15a69f6224402366bda08a90a
[lilypond.git] / Documentation / snippets / merging-multi-measure-rests-in-a-polyphonic-part.ly
1 % DO NOT EDIT this file manually; it is automatically
2 % generated from Documentation/snippets/new
3 % Make any changes in Documentation/snippets/new/
4 % and then run scripts/auxiliar/makelsr.py
5 %
6 % This file is in the public domain.
7 %% Note: this file works from version 2.17.18
8 \version "2.17.18"
9
10 \header {
11   lsrtags = "really-simple, rhythms, version-specific"
12
13   texidoc = "
14 When using multi-measure rests in a polyphonic staff, the rests will be
15 placed differently depending on the voice they belong to. However they
16 can be printed on the same staff line, using the following setting.
17
18 "
19   doctitle = "Merging multi-measure rests in a polyphonic part"
20 } % begin verbatim
21
22
23 normalPos = \revert MultiMeasureRest.direction
24
25 {
26   <<
27     {
28       c''1
29       R1
30       c''1
31       \normalPos
32       R1
33     }
34     \\
35     {
36       c'1
37       R1
38       c'1
39       \normalPos
40       R1
41     }
42   >>
43 }