]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/multi-measure-rest.ly
01732e4e887d8f3fd18b43df52607ad2a730e3be
[lilypond.git] / input / regression / multi-measure-rest.ly
1 \header{
2 texidoc="
3 Multiple measure rests do not collide with barlines and clefs.  They
4 are not expanded when you set @code{Score.skipBars}.  Although the
5 multi-measure-rest is a Spanner, minimum distances are set to keep it
6 colliding from barlines. 
7 ";
8 }
9 \version "1.3.117";
10
11 \score { \notes { \time 3/4; \key cis \major;
12             R2.*15 R2. R2.*7 }
13         \paper {
14         \translator {
15                 \ScoreContext
16                 skipBars = ##t
17         }
18         linewidth = -1.;        
19         }
20 }