]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/newaddlyrics.ly
* lily/book.cc: remove Book::to_stencil().
[lilypond.git] / input / regression / newaddlyrics.ly
1 \header {
2     
3     texidoc = "newlyrics, multiple stanzas, multiple lyric voices."
4     
5 }
6
7 %% only this works as advertised...
8 <<
9     \new Staff \relative {
10         d'2 d c4 bes a2 \break
11         c2 c d4 f g2
12     }
13     \newlyrics {
14         My first Li -- ly song,
15         Not much can go wrong!
16     }
17     \newlyrics {
18         My next Li -- ly verse
19         Not much can go wrong!
20     }
21     \new Staff \relative {
22         \clef bass
23         d2 d c4 bes a2 \break
24         c2 c d4 f g2
25     }
26     \newlyrics {
27         MY FIRST LI -- LY SONG,
28         NOT MUCH CAN GO WRONG!
29     }
30     \newlyrics {
31         MY NEXT LI -- LY VERSE
32         NOT MUCH CAN GO WRONG!
33     }
34 >>
35
36 \version "2.3.4"