]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/multi-measure-rest.ly
52d6dafd98314c0d3080efa49f7bd29cc6267282
[lilypond.git] / input / regression / multi-measure-rest.ly
1 \version "1.7.6"
2 \header{
3
4 texidoc="
5 Multiple 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
11 Rests over measures during longer than 2 wholes use breve rests.
12 "
13
14 }
15
16
17 \score { \notes {
18     \time 3/4 \key cis \major
19     R2.*15
20   
21     R2.
22     R2.*3
23     R2.*27
24 \time 8/4 R1*2
25 }
26         \paper {
27         \translator {
28                 \ScoreContext
29                 skipBars = ##t
30         }
31         linewidth = -1. 
32         }
33 }
34 %% new-chords-done %%