]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/changing-form-of-multi--measure-rests.ly
Split WWW target in two stages WWW-1 and WWW-2
[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.46"
4 \layout { ragged-right = ##t }
5 \header {
6   lsrtags = "rhythms,tweaks-and-overrides"
7   texidoc = "
8 If there are ten or fewer measures of rests, a series of longa
9 and breve rests (called in German \"Kirchenpausen\" - church rests)
10 is printed within the staff; otherwise a simple line is shown.
11 This default number of ten may be changed by overriding the
12 @code{expand-limit} property:
13 "
14   doctitle = "Changing form of multi-measure rests"
15 } % begin verbatim
16
17 \relative c'' {
18   \compressFullBarRests
19   R1*2 | R1*5 | R1*9
20   \override MultiMeasureRest #'expand-limit = 3
21   R1*2 | R1*5 | R1*9
22 }