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