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