]> git.donarmstrong.com Git - lilypond.git/blob - input/new/changing-form-of-multi--measure-rests.ly
Two new snippets.
[lilypond.git] / input / new / changing-form-of-multi--measure-rests.ly
1 \version "2.11.42"
2 \layout { ragged-right= ##t }
3 \header {
4   doctitle = "Changing form of multi-measure rests"
5   lsrtags = "rhythms,tweaks-and-overrides"
6   texidoc = "
7 If there are 10 or fewer measures of rest, LilyPond prints
8 a series of longa and breve rests (called in German
9 Kirchenpausen - church rests) within the staff and
10 prints a simple line otherwise.  This default number of 10
11 may be changed by an override:
12 "}
13
14 @lilypond[quote,ragged-right,fragment,verbatim]
15 \compressFullBarRests
16 R1*2 | R1*5 | R1*9
17 \override MultiMeasureRest #'expand-limit = 3
18 R1*2 | R1*5 | R1*9
19 @end lilypond
20