1
2
3\header { texidoc=
4
5	  "The analysis of the part combiner is non-local:
6in the following example, the decision for using separate voices in
7the 1st measure is made on the 2nd note, but influences the 1st note.
8
9In the 2nd measure, the pattern without the tie, leads to combined
10voices.
11
12"
13	}
14\version "2.21.0"
15
16vone =
17
18%%%%%%%%%%%%%%  0   1   2   3
19\relative {
20  \time 2/4
21  a'8[ a]  a8[ a] |
22  a8[ a]  a8[ a]
23}
24
25vtwo =
26\relative {
27  \time 2/4
28  f'8[ f]~ 8[ f] |
29  f8[ f]  f8[ f]
30}
31
32
33\partCombine \vone \vtwo
34
35