]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/part-combine-strings.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / input / regression / part-combine-strings.ly
1 \version "2.19.21"
2 \header {
3     texidoc = "Test some transitions that might be found in string parts produced with \\partcombine."
4 }
5
6 vone =  \relative { a'2 <a e> | r2 <a e> | r     r | r2 a4 r4 | g2 r | <b g> }
7 vtwo =  \relative { e'2 <e a> | r2 r     | <d g> r | r2 f4 r4 | g2 r | <g d> }
8 combined = \partcombine \vone \vtwo
9
10 % The part combiner does not yet support all of these labels.
11 expectedText = \relative c' {
12   s2_"div." s2_"unis." | s2 s2_"solo" | s2_"solo 2" s2 |
13   s2 s4_\markup \column { tutti, div. } s4 | s2_"unis." s | s_"div."
14 }
15
16 \layout { ragged-right = ##t }
17
18 \new Staff \with {
19      aDueText = "unis."
20      soloText = "solo"
21      soloIIText = "solo 2"
22 } <<
23    \set Score.skipBars = ##t
24    \combined
25    \expectedText
26 >>