summaryrefslogtreecommitdiff
path: root/input/regression/part-combine-force.ly
blob: e988e1e1cc9672254e18a128d148480631dbd667 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
\header {
  texidoc ="Overrides for the part-combiner. All functions like
  @code{\\partcombineApart} and @code{\\partcombineApartOnce} are
  internally implemented using a dedicated @code{partCombineForced}
  context property."
}

\layout { ragged-right = ##t }

\version "2.19.21"

mI = \relative {
	e'4 e c2 |
	\partcombineApart c^"apart" e |
	e e |
	\partcombineChords e'^"chord" e |
	\partcombineAutomatic c c\> |
	\partcombineUnisono c^"unisono" c |
	\partcombineAutomatic c\! c^"V1 longer" |
}
mII = \relative {
	c'4 c c2 |
	c c |
	\partcombineAutomatic e^"auto" e |
	a, c |
	c c' |
	c c |
	c
}

\score {
	\new Staff \partcombine \mI \mII
}