]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/mm-rests2.ly
MusicXML: src-dir rather than srcdir.
[lilypond.git] / input / regression / mm-rests2.ly
1
2 \version "2.11.51"
3
4 \header{
5   texidoc="
6 If @code{Score.skipBars} is set,
7 the signs for four, two, and one measure rest are combined to
8 produce the graphical representation of rests for up to 10 bars.
9 The number of bars will be written above the sign.
10 "
11 }
12
13 thenotes =  \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