]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/part-combine-text-wait.ly
Fix 2241: Proper copyright/header/tagline handling with multiple bookparts
[lilypond.git] / input / regression / part-combine-text-wait.ly
1 \version "2.14.0"
2
3
4 \header {
5   texidoc ="Wait for the next real note for part-combine texts (i.e. don't
6 print part-combine texts on rests). This is needed because the part-combiner
7 needs an override if one voice has a full-bar rest while the other has some
8 rests and then a solo."
9 }
10
11 \layout { ragged-right = ##t }
12
13 mI = \relative c'' {
14   \set Score.partCombineTextsOnNote = ##t
15   g4 \partcombineSoloI r4 c2 |
16   \partcombineSoloII R1*2 |
17 }
18 mII = \relative c' {
19   c4 r2. |
20   r2 r4 c4 |
21   R1 |
22 }
23
24 \score {
25   \new Staff \partcombine \mI \mII
26 }