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