]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/stanza-number.ly
Merge branch 'master' into dev/texi2html
[lilypond.git] / input / regression / stanza-number.ly
index 3e3743fc61d15ff98cf10b6e89a895f3d46fd376..05b5fa6f8fb3888c2aa4a5d90a3646305a284298 100644 (file)
@@ -1,21 +1,21 @@
-\version "2.1.7"
+\version "2.11.51"
 
-\header {
-texidoc = "Stanza numbers are put left of their lyric."
-}
+\header { texidoc = "Stanza numbers are put left of their lyric.  They
+are aligned in a column."  }
+
+\layout { ragged-right = ##t }
 
-\score {
-<<
-    \notes { r4 r4 c4  c4 }
-    \context LyricsVoice
-    \lyrics {
-       \skip 2
-       \property LyricsVoice . stanza = "1."
-       Foo8 Bar8
-    }
->>
+\relative c'' { r4 r4 c4 c4 }
+\addlyrics {
+  \skip 2
+  \set stanza = "1."
+  Foo8 
+}
+\addlyrics {
+  \skip 2
+  \set stanza = "2."
+  FFFooooo8
+}
 
-\paper { raggedright = ##t } 
-}