]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/score-text.ly
* input/regression/score-text.ly: Really add.
[lilypond.git] / input / regression / score-text.ly
1 \version "2.5.14"
2
3 \header {
4
5     texidoc = "Markup texts are set beneath a score."
6
7 }
8
9 \paper {
10     linewidth = #110
11 }
12 <<
13     \relative {
14         \clef bass
15         d,2 d c4 bes a2 \break
16         c2 c d4 f g2
17     }
18     \addlyrics {
19         My first Li -- ly song,
20         Not much can go wrong!
21     }
22 >>
23     \markup {
24         %%TODO: make \verse markup.
25         \fill-line {
26             \line {
27                 "2. "
28                 \column {
29                     \line { My next Li-ly verse }
30                     \line { Now it's getting worse! }
31                 }
32             }
33         }
34     }
35     \markup {
36         \fill-line {
37             \line {
38                 "3. "
39                 \column {
40                     \line { My last Li-ly text }
41                     \line { See what will be next! }
42                 }
43             }
44         }
45     }