]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/partial-polymetric.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / partial-polymetric.ly
1 \version "2.19.21"
2
3 \header {
4   texidoc = "@code{\\partial} works with polymetric staves."
5 }
6
7 \score {
8   \relative <<
9     \new Staff {
10       \partial 4
11       c'4 |
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 }