]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/newaddlyrics.ly
Fix 2241: Proper copyright/header/tagline handling with multiple bookparts
[lilypond.git] / input / regression / newaddlyrics.ly
1 \header {
2
3     texidoc = "newlyrics, multiple stanzas, multiple lyric voices."
4
5 }
6 \layout { ragged-right = ##t }
7 <<
8     \new Staff \relative c'' {
9         d2 d c4 bes a2 \break
10     }
11     \addlyrics {
12         My first Li -- ly song,
13     }
14     \addlyrics {
15         Not much can go wrong!
16     }
17     \new Staff \relative c' {
18         \clef bass
19         d2 d c4 bes a2 \break
20     }
21     \addlyrics {
22         MY FIRST LI -- LY SONG,
23     }
24     \addlyrics {
25         NOT MUCH CAN GO WRONG!
26     }
27 >>
28
29 \version "2.14.0"