]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/merging-multi-measure-rests-in-a-polyphonic-part.ly
LSR updates from tarball
[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.2"
8
9 \header {
10   lsrtags = "really-simple, version-specific, rhythms"
11
12 %% Translation of GIT committish: 57f9346bb030f49336a858fcbf1519366fe56454
13   texidocfr = "
14 Dans le cadre d'un portée polyphonique, les silences multimesures sont
15 positionnés différemment selon la voix à laquelle ils appartiennent.
16 Le réglage suivant permet néanmoins de les imprimer sur une même ligne.
17
18 "
19   doctitlefr = "Fusion de silences multimesures dans une partie polyphonique"
20
21   texidoc = "
22 When using multi-measure rests in a polyphonic staff, the rests will be
23 placed differently depending on the voice they belong to. However they
24 can be printed on the same staff line, using the following setting.
25
26 "
27   doctitle = "Merging multi-measure rests in a polyphonic part"
28 } % begin verbatim
29
30
31 normalPos = \revert MultiMeasureRest #'staff-position
32
33 {
34   <<
35     {
36       c''1
37       R1
38       c''1
39       \normalPos
40       R1
41     }
42     \\
43     {
44       c'1
45       R1
46       c'1
47       \normalPos
48       R1
49     }
50   >>
51 }
52