]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-form-of-multi-measure-rests.ly
Run makelsr
[lilypond.git] / Documentation / snippets / changing-form-of-multi-measure-rests.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.19.20
8
9 \version "2.19.20"
10
11 \header {
12   lsrtags = "rhythms, tweaks-and-overrides"
13
14   texidoc = "
15 If there are ten or fewer measures of rests, a series of longa and
16 breve rests (called in German @qq{Kirchenpausen} - church rests) is
17 printed within the staff; otherwise a simple line is shown. This
18 default number of ten may be changed by overriding the
19 @code{expand-limit} property.
20
21 "
22   doctitle = "Changing form of multi-measure rests"
23 } % begin verbatim
24
25
26 \relative c'' {
27   \compressMMRests {
28     R1*2 | R1*5 | R1*9
29     \override MultiMeasureRest.expand-limit = #3
30     R1*2 | R1*5 | R1*9
31   }
32 }