]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/lsr/adjusting-lyrics-vertical-spacing.ly
Merge branch 'master' of ssh://kainhofer@git.sv.gnu.org/srv/git/lilypond into dev...
[lilypond.git] / input / lsr / adjusting-lyrics-vertical-spacing.ly
index 68a31e707bc1f41e6e224c4ccdaa4736c113f4a2..33f4dd9eb8754964830b94fe06788406a650b862 100644 (file)
@@ -4,32 +4,26 @@
 
 \header {
   lsrtags = "text, vocal-music, spacing"
- texidoc = "
-This snippets shows you how to bring the lyrics line closer to the
-Staff.
-" }
-% begin verbatim
-% Default layout:
-\score{
-  <<
-    \new Staff \new Voice = m \relative c'{ c4 d e f g f e d c1}
-    \new Lyrics \lyricsto m {aa aa aa aa aa aa aa aa aa }
-  >>
-}
 
-% Reducing the minimum space below the Staff and above the Lyrics:
+  texidoc = "
+This snippet shows you how to bring the lyrics line closer to the
+staff.
 
-\score {
-  <<
-    \new Staff \with {
-      \override VerticalAxisGroup #'minimum-Y-extent = #'(-1. 4)}
-    \new Voice = m \relative c'{ c4 d e f g f e d c1 }
-    \new Lyrics \with {
-      \override VerticalAxisGroup #'minimum-Y-extent = #'(-1.2 . 1)}
-    \lyricsto m {aa aa aa aa aa aa aa aa aa }
-  >>
+"
+  doctitle = "Adjusting lyrics vertical spacing"
+} % begin verbatim
+% Default layout:
+<<
+  \new Staff \new Voice = melody \relative c '{ c4 d e f g f e d c1 }
+  \new Lyrics \lyricsto melody { aa aa aa aa aa aa aa aa aa }
+>>
 
-  \header {
-    tagline = ""
-  }
-}
+% Reducing the minimum space below the staff and above the lyrics:
+<<
+  \new Staff \with {
+    \override VerticalAxisGroup #'minimum-Y-extent = #'(-1 . 4) }
+  \new Voice = melody \relative c' { c4 d e f g f e d c1 }
+  \new Lyrics \with {
+    \override VerticalAxisGroup #'minimum-Y-extent = #'(-1.2 . 1) }
+  \lyricsto melody { aa aa aa aa aa aa aa aa aa }
+>>