X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fadjusting-lyrics-vertical-spacing.ly;h=4adca37a1a621ff5da633c254c657b79de5e70b6;hb=dcca081b1904b4db09658657631d919f280c06d2;hp=5feb110f47508115cf7694943e4cabe4111079ff;hpb=3d8089a42af6304edb8dad56220e845c84832bb2;p=lilypond.git diff --git a/Documentation/snippets/adjusting-lyrics-vertical-spacing.ly b/Documentation/snippets/adjusting-lyrics-vertical-spacing.ly index 5feb110f47..4adca37a1a 100644 --- a/Documentation/snippets/adjusting-lyrics-vertical-spacing.ly +++ b/Documentation/snippets/adjusting-lyrics-vertical-spacing.ly @@ -1,11 +1,14 @@ -%% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it -%% This file is in the public domain. -\version "2.13.1" +% 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" \header { - lsrtags = "text, vocal-music, spacing" - -%% Translation of GIT committish: 00e3a8264e138ad61b4f115a173190d5e9dc7533 +%% Translation of GIT committish: 615cbf212fdaf0b220b3330da417d0c3602494f2 texidoces = " Este fragmento de código muestra cómo situar la línea de base de la letra más cerca del pentagrama. @@ -13,15 +16,17 @@ 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 +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. @@ -29,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' { @@ -38,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 } >> -