]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/part-combine-force-once.ly
Docs: run convert-ly for 2.14.0.
[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.14.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 }
20 mII = \relative c' {
21         c4 \partcombineApartOnce c c c |
22         c c \partcombineAutomaticOnce e e |
23         c c c c |
24         R1 |
25         r2 c4 c |
26 }
27
28 \score {
29         \new Staff \partcombine \mI \mII
30 }