]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-form-of-multi-measure-rests.ly
LSR reimport because of issue 3584 changing version numbers
[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.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.17.6"
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
24 \relative c'' {
25   \compressFullBarRests
26   R1*2 | R1*5 | R1*9
27   \override MultiMeasureRest.expand-limit = #3
28   R1*2 | R1*5 | R1*9
29 }