]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/merging-multi-measure-rests-in-a-polyphonic-part.ly
Docs: run convert-ly for 2.14.0.
[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 LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.14.0"
8
9 \header {
10   lsrtags = "rhythms"
11
12   texidoc = "
13 When using multi-measure rests in a polyphonic staff, the rests will be
14 placed differently depending on the voice they belong to. However they
15 can be printed on the same staff line, using the following setting.
16
17 "
18   doctitle = "Merging multi-measure rests in a polyphonic part"
19 } % begin verbatim
20
21 normalPos = \revert MultiMeasureRest #'staff-position
22
23 {
24   <<
25     {
26       c''1
27       R1
28       c''1
29       \normalPos
30       R1
31     }
32     \\
33     {
34       c'1
35       R1
36       c'1
37       \normalPos
38       R1
39     }
40   >>
41 }
42