]> git.donarmstrong.com Git - lilypond.git/blob - input/test/maximum-rest-count.ly
update syntax in .ly files.
[lilypond.git] / input / test / maximum-rest-count.ly
1 \version "1.7.6"
2 \header {
3     texidoc = "Control the number of rests in a collision   with maximum-rest-count."
4 }
5
6 \score{
7 \context Staff \notes\relative c''<
8         \context Voice = x {
9                 a4 
10                 r 
11                 \property Staff. RestCollision \set #'maximum-rest-count = #1
12                 r 
13                 \property Staff. RestCollision \set #'maximum-rest-count = #2
14                 r 
15                 \property Staff. RestCollision \set #'maximum-rest-count = #3
16                 r 
17                 r8 r8
18                 c
19         }
20         \context Voice = y {
21                 c4
22                 r
23                 r 
24                 r
25                 r
26                 r
27                 r
28         }
29         \context Voice = z {
30                 e4
31                 r
32                 r 
33                 r
34                 r
35                 r
36                 r
37         }
38         >
39 \paper{
40 }
41 \midi{
42 \tempo 1 = 60
43 }
44 }
45 %% new-chords-done %%