]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/newaddlyrics.ly
* input/regression/newaddlyrics.ly: New file.
[lilypond.git] / input / regression / newaddlyrics.ly
1 \header {
2     texidoc = "newlyrics -- multiple stanzas broken as yet."
3 }
4
5 %% Testing newlyrics 
6 %%\new PianoStaff <<
7 <<
8     \new Staff \relative {
9         d'2 d c4 bes a2 \break
10         c2 c d4 f g2
11     }
12     \newlyrics <<
13         {
14             My first Li -- ly song,
15             Not much can go wrong!
16         }
17         {
18             My se -- cond ly verse
19             Not much can go wrong!
20         }
21     >>
22     \new Staff \relative {
23         \clef bass
24         d2 d c4 bes a2 \break
25         c2 c d4 f g2
26     }
27     \newlyrics <<
28         {
29             MY FIRST LI -- LY SONG,
30             NOT MUCH CAN GO WRONG!
31         }
32         {
33             MY SE -- COND LY VERSE
34             NOT MUCH CAN GO WRONG!
35         }
36     >>
37 >>
38
39 \version "2.3.0"