]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/part-combine-chord-range.ly
Merge remote branch 'origin/master' into release/unstable
[lilypond.git] / input / regression / part-combine-chord-range.ly
1 \header {
2   texidoc ="The part combiner has an option to set the range of
3 differences in steps between parts that may be combined into chords."
4 }
5
6 \version "2.19.16"
7
8 \layout { ragged-right = ##t }
9
10 vone = \relative e' {
11   d4 e f fisis | g geses b' bisis | b2 beses
12 }
13
14 vtwo = \relative e' {
15   e4 e e e | e eisis d deses | c2 cisis
16 }
17
18 comm = { s1_"apart" s1_"chords" s1_"apart" }
19
20 \new Staff <<
21   \partcombine #'(2 . 12) \vone \vtwo
22   \comm
23 >>