]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/lsr/adjusting-lyrics-vertical-spacing.ly
Add example of stand-alone markup.
[lilypond.git] / input / lsr / adjusting-lyrics-vertical-spacing.ly
index f66298ed450ae98cb85eda55e750baaa75e37824..1e71ef88cd6b37578532fc0c567c9e4928b89cd5 100644 (file)
@@ -1,28 +1,26 @@
-%% Do not edit this file; it is auto-generated from LSR!
-%% Tags: text, vocal-music, spacing
-\version "2.11.35"
+%% 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"
 
-\header { texidoc = "
-This snippets shows you how to bring the lyrics line closer to the
-Staff.
+\header {
+  lsrtags = "text, vocal-music, spacing"
+ texidoc = "
+This snippet 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 }
- >>
-}
+  \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 }
+>>
 
-% Reducing the minimum space below the Staff and above the Lyrics:
-\score{
+% Reducing the minimum space below the staff and above the lyrics:
 <<
-\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 }
- >>
-}
+  \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 }
+>>