]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/part-combine-force-once.ly
Release: bump Welcome versions.
[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.19.29"
12
13 mI = \relative {
14         e'4 e \once \partcombineApart c c |
15         \partcombineApart c \once \partcombineChords e e e |
16         c \once \partcombineUnisono c c c |
17         \partcombineAutomatic \once \partcombineSoloI r2 c4 c |
18         \once \partcombineSoloII R1 |
19         d'2 \once \partcombineChords d4^"1 chord" d|
20 }
21 mII = \relative {
22         c'4 \once \partcombineApart c c c |
23         c c \once \partcombineAutomatic 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 }