1
2\header {
3  texidoc ="Overrides for the part-combiner. All functions like
4  @code{\\partCombineApart} and @code{\\once \partCombineApart} are
5  internally implemented using a dedicated @code{partCombineForced}
6  context property."
7}
8
9\layout { ragged-right = ##t }
10
11\version "2.21.0"
12
13mI = \relative {
14	e'4 e c2 |
15	\partCombineApart c^"apart" e |
16	e e |
17	\partCombineChords e'^"chord" e |
18	\partCombineAutomatic c c\> |
19	\partCombineUnisono c^"unisono" c |
20	\partCombineAutomatic c\! c^"V1 longer" |
21}
22mII = \relative {
23	c'4 c c2 |
24	c c |
25	\partCombineAutomatic e^"auto" e |
26	a, c |
27	c c' |
28	c c |
29	c
30}
31
32\score {
33	\new Staff \partCombine \mI \mII
34}
35