]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/adjusting-lyrics-vertical-spacing.ly
Doc: run makelsr locally
[lilypond.git] / Documentation / snippets / adjusting-lyrics-vertical-spacing.ly
index bade6ced43b8768c2cae53ca7b00ce0fc831da1c..1ecdd362a1203295c7867aaccac5b679259f56b9 100644 (file)
@@ -1,12 +1,15 @@
-%% Do not edit this file; it is automatically
+%% DO NOT EDIT this file manually; it is automatically
 %% generated from LSR http://lsr.dsi.unimi.it
+%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
+%% and then run scripts/auxiliar/makelsr.py
+%%
 %% This file is in the public domain.
-\version "2.13.10"
+\version "2.14.2"
 
 \header {
-  lsrtags = "text, vocal-music, spacing"
+  lsrtags = "correction-wanted, vocal-music, workaround, text, spacing"
 
-%% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
+%% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
   texidoces = "
 Este fragmento de código muestra cómo situar la línea de base de la
 letra más cerca del pentagrama.
@@ -14,7 +17,8 @@ letra más cerca del pentagrama.
 "
   doctitlees = "Ajuste del especiado vertical de la letra"
 
-%% Translation of GIT committish: 499a511d4166feaada31114e097f86b5e0c56421
+
+%% Translation of GIT committish: 9a65042d49324f2e3dff18c4b0858def81232eea
   texidocfr = "
 Cet extrait illustre la manière de rapprocher la ligne de paroles
 de la portée.
@@ -39,18 +43,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
+  \new Staff {
+    \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 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 }
 >>
-