]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/lsr/adjusting-lyrics-vertical-spacing.ly
Merge branch 'lilypond/translation' of ssh://trettig@git.sv.gnu.org/srv/git/lilypond...
[lilypond.git] / input / lsr / adjusting-lyrics-vertical-spacing.ly
index 1e71ef88cd6b37578532fc0c567c9e4928b89cd5..1eba250da1d8827cbf9d6d78ef274221d781ae66 100644 (file)
@@ -1,26 +1,36 @@
 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
 %% This file is in the public domain.
-\version "2.11.38"
+\version "2.11.49"
 
 \header {
   lsrtags = "text, vocal-music, spacing"
- texidoc = "
-This snippet shows you how to bring the lyrics line closer to the
-staff.
-" }
-% begin verbatim
+
+  texidoc = "
+This snippet shows how to bring the lyrics line closer to the staff.
+
+"
+  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 Staff \new Voice = melody \relative c' {
+    c4 d e f
+    g4 f e d
+    c1
+  }
   \new Lyrics \lyricsto melody { aa aa aa aa aa aa aa aa aa }
->>
 
 % 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 }
+    \override VerticalAxisGroup #'minimum-Y-extent = #'(-1 . 4)
+  }
+  \new Voice = melody \relative c' {
+    c4 d e f
+    g4 f e d
+    c1
+  }
   \new Lyrics \with {
-    \override VerticalAxisGroup #'minimum-Y-extent = #'(-1.2 . 1) }
+    \override VerticalAxisGroup #'minimum-Y-extent = #'(-1.2 . 1)
+  }
   \lyricsto melody { aa aa aa aa aa aa aa aa aa }
 >>