]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/changing-form-of-multi--measure-rests.ly
Merge branch 'master' of ssh://jomand@git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / input / lsr / changing-form-of-multi--measure-rests.ly
1 %% Do not edit this file; it is auto-generated from input/new
2 %% This file is in the public domain.
3 \version "2.11.42"
4 \layout { ragged-right= ##t }
5 \header {
6   doctitle = "Changing form of multi-measure rests"
7   lsrtags = "rhythms,tweaks-and-overrides"
8   texidoc = "
9 If there are ten or fewer measures of rests, LilyPond prints
10 a series of longa and breve rests (called in German
11 \"Kirchenpausen\" - church rests) within the staff and
12 prints a simple line otherwise.  This default number of ten
13 may be changed by an override:
14 "}
15 % begin verbatim
16 \relative c'' {
17   \compressFullBarRests
18   R1*2 | R1*5 | R1*9
19   \override MultiMeasureRest #'expand-limit = 3
20   R1*2 | R1*5 | R1*9
21 }