]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/new-part-combine-solo.ly
* scm/music-functions.scm (determine-split-list): further analysis.
[lilypond.git] / input / regression / new-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 "
12     }
13
14 vone = \notes \relative a' { g4 r8 g8 g8 r8 g8 r8 }
15 vtwo = \notes \relative g' { e4.   e8 r2  } 
16
17 \score {
18     << \property Score.skipBars = ##t 
19    \newpartcombine \vone \vtwo
20        >>
21 }
22