]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/adjusting-lyrics-vertical-spacing.ly
New version of LSR upgrade
[lilypond.git] / Documentation / snippets / adjusting-lyrics-vertical-spacing.ly
index 11f6268aba11c29585a6d92e03f7302082b36a39..267119636c9f3008a89303586e5bd636a1e1ad15 100644 (file)
@@ -1,13 +1,14 @@
-% 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.14.0
-\version "2.14.0"
+%% 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.14.2"
 
 \header {
+  lsrtags = "correction-wanted, vocal-music, workaround, text, spacing"
+
 %% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
   texidoces = "
 Este fragmento de código muestra cómo situar la línea de base de la
@@ -26,15 +27,16 @@ 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.
+[This behaviour is no longer used from version 2.13 onwards.]
 
 "
   doctitle = "Adjusting lyrics vertical spacing"
 } % begin verbatim
 
 
+
 % Default layout:
 <<
   \new Staff \new Voice = melody \relative c' {
@@ -44,7 +46,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
@@ -52,6 +53,7 @@ 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 #'nonstaff-relatedstaff-spacing = #'((basic-distance . 1))
   }