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