]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/lyric-combine-polyphonic.ly
Imported Upstream version 2.14.2
[lilypond.git] / input / regression / lyric-combine-polyphonic.ly
1 \version "2.14.0"
2 \header {
3
4   texidoc ="Polyphonic rhythms and rests do not disturb
5 @code{\\lyricsto}."
6
7 }
8
9 \layout { ragged-right = ##t}
10
11 {
12   \new ChoirStaff <<
13     \context Lyrics = sop { s1 }
14     \new Staff {
15       \clef violin
16       \time 8/8
17       \key des \major
18       <<
19         \new Voice = "one" {
20         \voiceOne
21         bes'4 bes'4
22         bes'4 bes'4
23       }
24       \lyricsto "one"  \context Lyrics = sop {
25         Do mi nus ex
26       }
27       \new Voice = "two" {
28         \voiceTwo
29         ees'8 r8 r8 r8 ees' r8 r8 r8 
30       }
31       \lyricsto "two"  \new Lyrics  {
32         Do na
33       }
34     >>
35   }
36   >>
37 }
38
39
40