]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/part-combine-force-once.ly
Merge remote branch 'origin/master' into release/unstable
[lilypond.git] / input / regression / part-combine-force-once.ly
1
2 \header {
3   texidoc ="Overrides for the part-combiner, affecting only one moment.
4   The @code{partcombine...Once} override applies only to one moment, after which the
5   old override -- if any -- is in effect again.
6 "
7 }
8
9 \layout { ragged-right = ##t }
10
11 \version "2.16.0"
12
13 mI = \relative c' {
14         e4 e \partcombineApartOnce c c |
15         \partcombineApart c \partcombineChordsOnce e e e |
16         c \partcombineUnisonoOnce c c c |
17         \partcombineAutomatic \partcombineSoloIOnce r2 c4 c |
18         \partcombineSoloIIOnce R1 |
19         d'2 \partcombineChordsOnce d4^"1 chord" d|
20 }
21 mII = \relative c' {
22         c4 \partcombineApartOnce c c c |
23         c c \partcombineAutomaticOnce e e |
24         c c c c |
25         R1 |
26         r2 c4 c |
27         b4 b b b |
28 }
29
30 \score {
31         \new Staff \partcombine \mI \mII
32 }