]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/newaddlyrics.ly
* scripts/convert-ly.py (conv): remove \notes.
[lilypond.git] / input / regression / newaddlyrics.ly
1 \header {
2     
3     texidoc = "newlyrics, multiple stanzas, multiple lyric voices."
4     
5 }
6
7 %% FIXME:
8 %% THIS does not parse:
9 %\new PianoStaff <<
10
11 %% and THIS: gives incorrect results (all lyrics below pianostaff)
12 %\context PianoStaff <<
13
14 %% only this works as advertised...
15 <<
16     \new Staff \relative {
17         d'2 d c4 bes a2 \break
18         c2 c d4 f g2
19     }
20     \newlyrics {
21         My first Li -- ly song,
22         Not much can go wrong!
23     }
24     \newlyrics {
25         My next Li -- ly verse
26         Not much can go wrong!
27     }
28     \new Staff \relative {
29         \clef bass
30         d2 d c4 bes a2 \break
31         c2 c d4 f g2
32     }
33     \newlyrics {
34         MY FIRST LI -- LY SONG,
35         NOT MUCH CAN GO WRONG!
36     }
37     \newlyrics {
38         MY NEXT LI -- LY VERSE
39         NOT MUCH CAN GO WRONG!
40     }
41 >>
42
43 \version "2.3.4"