1
2\version "2.16.0"
3
4\header{
5  texidoc="
6If @code{Score.skipBars} is set,
7the signs for four, two, and one measure rest are combined to
8produce the graphical representation of rests for up to 10 bars.
9The number of bars will be written above the sign.
10"
11}
12
13thenotes =  \relative cis' {
14  \set Score.skipBars = ##t
15  \time 4/4
16  R1 |
17  R1*1 |
18  R1*2 |
19  R1*3 |
20  R1*4 |
21  R1*5 |
22  R1*6 |
23  R1*7 |
24  R1*8 |
25  R1*9 |
26  R1*10 |
27  R1*11 |
28}
29
30<< \context Staff \thenotes
31
32 >>
33
34
35