]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/partial-polymetric.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / input / regression / partial-polymetric.ly
1 \version "2.14.0"
2
3 \header {
4   texidoc = "@code{\\partial} works with polymetric staves."
5 }
6
7 \score {
8   \relative c' <<
9     \new Staff {
10       \partial 4
11       c4 |
12       c4 c c c |
13     }
14     \new Staff {
15       \time 3/4
16       \partial 2
17       c4 c |
18       c4 c c |
19     }
20   >>
21   \layout {
22     \context {
23       \Score
24       \remove "Timing_translator"
25       \remove "Default_bar_line_engraver"
26     }
27     \context {
28       \Staff
29       \consists "Timing_translator"
30       \consists "Default_bar_line_engraver"
31     }
32   }
33 }