]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/multi-measure-rest.ly
*** empty log message ***
[lilypond.git] / input / regression / multi-measure-rest.ly
1 \version "2.6.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
18 {
19   \time 3/4 \key cis \major
20   R2.*15
21   
22   R2.
23   R2.*3
24   R2.*9
25   R2.*11
26
27   \time 8/4 R1*2
28 }
29 \layout {
30   \context {
31     \Score
32     skipBars = ##t
33   }
34   raggedright = ##t     
35 }
36
37