]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/multi-measure-rest.ly
Merge commit 'origin' into beamlets2
[lilypond.git] / input / regression / multi-measure-rest.ly
1 \version "2.12.0"
2 \header{
3
4   texidoc="
5 Multi-measure rests do not collide with barlines 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 keep it
8 colliding from barlines. 
9
10 Rests over measures during longer than 2 wholes use breve rests. When
11 more than 10 or more measures (tunable through @code{expand-limit})
12 are used then a different symbol is used.
13
14 "
15 }
16
17 \layout {
18   \context {
19     \Score
20     skipBars = ##t
21   }
22   ragged-right = ##t    
23 }
24
25
26 {
27   \time 3/4 \key cis \major
28   R2.*15
29   
30   R2.*7
31   R2.*9
32   R2.*11
33
34   \time 8/4 R1*2
35 }
36
37