]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/mm-rests2.ly
patch::: 1.3.134.jcn1
[lilypond.git] / input / regression / mm-rests2.ly
1
2 \header{
3 texidoc="
4 If @code{Score.skipBars} is set,
5 the signs for four, two, and one measure rest are combined to
6 produce the graphical representation of rests for up to 10 bars.
7 The number of bars will be written above the sign.
8 ";
9 }
10
11 thenotes = \notes \relative cis' {
12 \property Score. skipBars = ##t
13 \time 4/4;
14 R1 |
15 R1*1 |
16 R1*2 |
17 R1*3 |
18 R1*4 |
19 R1*5 |
20 R1*6 |
21 R1*7 |
22 R1*8 |
23 R1*9 |
24 R1*10 |
25 R1*11 |
26 }
27
28 \score { < \context Staff \thenotes
29
30         >
31 }