]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/multi-measure-rest.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / input / regression / multi-measure-rest.ly
1 \version "2.14.0"
2
3 \header {
4   texidoc="
5 Multi-measure rests do not collide with bar lines and clefs.  They
6 are not expanded when you set @code{Score.skipBars}.  Although the
7 multi-measure-rest is a Spanner, minimum distances are set to stop it
8 colliding with bar lines.
9
10 Rests over measures lasting longer than 2 wholes use breve rests.  When
11 more than 10 measures (tunable through @code{expand-limit}) are used
12 then a different symbol is used.
13 "
14 }
15
16 \layout {
17   \context {
18     \Score
19     skipBars = ##t
20   }
21 }
22
23 {
24   \time 3/4
25   \key cis \major
26   R2.*15
27   
28   R2.*7
29   R2.*9
30   R2.*11
31   \clef bass
32   \time 8/4 R1*2
33 }