X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;ds=sidebyside;f=Documentation%2Fsnippets%2Fadjusting-lyrics-vertical-spacing.ly;h=9d55482f52ac0daa72b1a81d1ebab2f6c4e03a01;hb=d7c0f4263534307616c82d9b2ce6fdef9472456f;hp=fae7a1c6c603e339c25364c39de9e8c0c8093872;hpb=ee99378ad5e8efd17526469bfb777c6e3928605d;p=lilypond.git diff --git a/Documentation/snippets/adjusting-lyrics-vertical-spacing.ly b/Documentation/snippets/adjusting-lyrics-vertical-spacing.ly index fae7a1c6c6..9d55482f52 100644 --- a/Documentation/snippets/adjusting-lyrics-vertical-spacing.ly +++ b/Documentation/snippets/adjusting-lyrics-vertical-spacing.ly @@ -1,12 +1,11 @@ -%% 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.10" +% 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.29" \header { - lsrtags = "text, vocal-music, spacing" - -%% Translation of GIT committish: 4385ed4cc738e164a95798862580b4b86703356f +%% 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. @@ -14,7 +13,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. @@ -23,6 +23,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. @@ -30,6 +31,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' { @@ -39,18 +41,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 #'inter-staff-spacing = #'((space . 1)) } \lyricsto melody { aa aa aa aa aa aa aa aa aa } >> -