]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/adjusting-lyrics-vertical-spacing.ly
Rerun scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / Documentation / snippets / adjusting-lyrics-vertical-spacing.ly
index 3055669397d75046a9cf121ed932df659f9c11e8..e7bcf160f125bdd413839b07dcff7de29486acfb 100644 (file)
@@ -1,29 +1,14 @@
-% Do not edit this file; it is automatically
-% generated from Documentation/snippets/new
-% This file is in the public domain.
-%% Note: this file works from version 2.13.16
-\version "2.13.31"
+%% 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.17.6"
 
 \header {
-%% Translation of GIT committish: 0b55335aeca1de539bf1125b717e0c21bb6fa31b
-  texidoces = "
-Este fragmento de código muestra cómo situar la línea de base de la
-letra más cerca del pentagrama.
+  lsrtags = "correction-wanted, spacing, text, vocal-music, workaround"
 
-"
-  doctitlees = "Ajuste del especiado vertical de la letra"
-
-
-%% Translation of GIT committish: 9a65042d49324f2e3dff18c4b0858def81232eea
-  texidocfr = "
-Cet extrait illustre la manière de rapprocher la ligne de paroles
-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,7 +16,6 @@ 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' {
@@ -41,7 +25,6 @@ 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 {
     \new Voice = melody \relative c' {
       c4 d e f
@@ -49,8 +32,9 @@ This snippet shows how to bring the lyrics line closer to the staff.
       c1
     }
   }
+  % Reducing the minimum space below the staff and above the lyrics:
   \new Lyrics \with {
-    \override VerticalAxisGroup #'inter-staff-spacing = #'((space . 1))
+    \override VerticalAxisGroup.nonstaff-relatedstaff-spacing = #'((basic-distance . 1))
   }
   \lyricsto melody { aa aa aa aa aa aa aa aa aa }
 >>