]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/score-text.ly
Imported Upstream version 2.16.0
[lilypond.git] / input / regression / score-text.ly
index 2cf43d56219191de271fb9cb2613b8c7df8255ca..05b8ec17693cb4934fd00278bac725491385ecc8 100644 (file)
@@ -1,4 +1,4 @@
-\version "2.5.14"
+\version "2.16.0"
 
 \header {
 
@@ -7,22 +7,27 @@
 }
 
 \paper {
-    linewidth = #110
+    line-width = #110
 }
-\markup {
-    \fill-line { "High up above" }
-}
-<<
-    \relative {
-       \clef bass
-       d,2 d c4 bes a2 \break
-       c2 c d4 f g2
+
+%% using Book and Score to get text in lilypond-book
+\book {
+    \markup {
+       \fill-line { "High up above" }
     }
-    \addlyrics {
-       My first Li -- ly song,
-       Not much can go wrong!
+    \score {
+       <<
+           \relative c {
+               \clef bass
+               d2 d c4 bes a2 \break
+               c2 c d4 f g2
+           }
+           \addlyrics {
+               My first Li -- ly song,
+               Not much can go wrong!
+           }
+       >>
     }
->>
     \markup {
        %%TODO: make \verse markup.
        \fill-line {
@@ -46,3 +51,4 @@
            }
        }
     }
+}