]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/part-combine-force.ly
Imported Upstream version 2.18.0
[lilypond.git] / input / regression / part-combine-force.ly
1
2 \header {
3   texidoc ="Overrides for the part-combiner. All functions like
4   @code{\\partcombineApart} and @code{\\partcombineApartOnce} are internally implemented
5   using a dedicated @code{PartCombineForceEvent}.
6 "
7 }
8
9 \layout { ragged-right = ##t }
10
11 \version "2.16.0"
12
13 mI = \relative c' {
14         e4 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 }
22 mII = \relative c' {
23         c4 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 }