]> git.donarmstrong.com Git - lilypond.git/blob - input/test/maximum-rest-count.ly
* scripts/convert-ly.py (FatalConversionError.figures_replace):
[lilypond.git] / input / test / maximum-rest-count.ly
1 #(ly:set-option 'old-relative)
2 \version "1.9.4"
3 % possible rename to rest-foo
4 \header {
5     texidoc = "@cindex Rest Collision Count
6 Control the number of rests in a collision with maximum-rest-count."
7 }
8
9 \score{
10 \context Staff \notes\relative c''<<
11         \new Voice {
12                 a4 
13                 r 
14                 \property Staff. RestCollision \set #'maximum-rest-count = #1
15                 r 
16                 \property Staff. RestCollision \set #'maximum-rest-count = #2
17                 r 
18                 \property Staff. RestCollision \set #'maximum-rest-count = #3
19                 r 
20                 r8 r8
21                 c
22         }
23         \new Voice {
24                 c4
25                 r
26                 r 
27                 r
28                 r
29                 r
30                 r
31         }
32         \new Voice {
33                 e4
34                 r
35                 r 
36                 r
37                 r
38                 r
39                 r
40         }
41         >>
42         \paper{ raggedright = ##t }
43 }
44