]> git.donarmstrong.com Git - lilypond.git/blob - input/test/timing.ly
* lily/my-lily-lexer.cc: add \accacciatura and \appoggiatura
[lilypond.git] / input / test / timing.ly
1
2 \version "1.9.2"
3 % possible rename to bar-something.
4
5 \header{ texidoc = "@cindex Bar Length
6
7 You can alter the length of bars by setting
8 @code{measureLength} or by resetting @code{measurePosition}. "
9 }
10
11 \score { 
12   \context Voice \notes\relative c {
13     
14         
15         % \property Score. measurePosition = #(ly:make-moment -1 4)
16         \partial 4
17         c''4 c4 c4 c2 c1
18         \cadenzaOn  c8[ d e f]  g[ a b c b c b c]
19         \cadenzaOff
20         c4 c4 c4 c4
21         \property Score. measureLength = #(ly:make-moment 5 4)
22         
23         c1 c4
24         c1 c4 
25         c4 c4
26         \property Score. measurePosition = #(ly:make-moment -3 8)
27         b8 b b
28         c4 c1
29         
30   }
31   \paper { raggedright= ##t}  
32 }
33