]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/part-combine-solo.ly
* lily/parser.yy (part_combined_music): remove old PC cruft.
[lilypond.git] / input / regression / part-combine-solo.ly
1
2 \header { texidoc =
3
4           "A solo string can only be printed when a note
5     starts. Hence, in this example, there is no Solo-2 although the
6     2nd voice has a dotted quarter, while the first voice has a rest.
7
8 A Solo indication is only printed once; (shared) rests do not require
9 reprinting a solo indication.
10
11 Solo 1/2 can not be used when a spanner is active, so there is no solo
12  over any of the tied notes.
13
14 "
15     }
16
17 vone = \notes \relative a' { g4 r8 g8 g8 r8 g8 r8 g2 ~ g2 ~ g4 }
18 vtwo = \notes \relative g' { e4.   e8 r2          e4 r4 r2  e4 } 
19
20 \score {
21     
22     << \property Score.skipBars = ##t
23    \newpartcombine \vone \vtwo
24        >>
25 }
26