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