1
2\header {
3  texidoc ="If the part-combiner shows two separate voices, multi-measure rests
4  are supposed to use the same settings as @code{\\voiceOnce} and @code{\\voiceTwo}.
5"
6}
7
8\layout { ragged-right = ##t }
9
10\version "2.21.0"
11
12mI = \relative c'' {
13  \partCombineApart
14  c2 c |
15  R1 |
16  c1
17}
18mII = \relative {
19  R1 |
20  c'2 c |
21  c1
22}
23
24\score {
25  \new Staff \partCombine \mI \mII
26}
27