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