]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/adjusting-lyrics-vertical-spacing.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / Documentation / snippets / adjusting-lyrics-vertical-spacing.ly
index 2f08c763e5a5e71db6e7cdb94558ac42d780d87c..0099b3d77ab9dd01b57f7960b85fbc1ddc2b5ba3 100644 (file)
@@ -1,12 +1,14 @@
-%% Do not edit this file; it is automatically
-%% generated from LSR http://lsr.dsi.unimi.it
-%% This file is in the public domain.
-\version "2.13.16"
+% DO NOT EDIT this file manually; it is automatically
+% generated from Documentation/snippets/new
+% Make any changes in Documentation/snippets/new/
+% and then run scripts/auxiliar/makelsr.py
+%
+% This file is in the public domain.
+%% Note: this file works from version 2.13.42
+\version "2.14.0"
 
 \header {
-  lsrtags = "text, vocal-music, spacing"
-
-%% Translation of GIT committish: 1d589aa04c20d7711bf662618adbdd6d445db29d
+%% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
   texidoces = "
 Este fragmento de código muestra cómo situar la línea de base de la
 letra más cerca del pentagrama.
@@ -24,6 +26,7 @@ de la portée.
   doctitlefr = "Ajustement de l'espacement vertical des paroles"
 
 
+  lsrtags = "text, vocal-music, spacing"
   texidoc = "
 This snippet shows how to bring the lyrics line closer to the staff.
 
@@ -31,6 +34,7 @@ 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' {
@@ -40,18 +44,16 @@ This snippet shows how to bring the lyrics line closer to the staff.
   }
   \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
-    g4 f e d
-    c1
+  % Reducing the minimum space below the staff and above the lyrics:
+  \new Staff {
+    \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 #'nonstaff-relatedstaff-spacing = #'((basic-distance . 1))
   }
   \lyricsto melody { aa aa aa aa aa aa aa aa aa }
 >>
-