X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Flsr%2Fadjusting-lyrics-vertical-spacing.ly;h=83e15bd307bf9baaa29b86cf4a1ac6b8c6325da0;hb=d664f5a7153ec2b1a1c4c9fba2d2174bf3140695;hp=1e71ef88cd6b37578532fc0c567c9e4928b89cd5;hpb=d0bb8ab6cb52449b6f58154c9bdc0ae92d71c924;p=lilypond.git diff --git a/input/lsr/adjusting-lyrics-vertical-spacing.ly b/input/lsr/adjusting-lyrics-vertical-spacing.ly index 1e71ef88cd..83e15bd307 100644 --- a/input/lsr/adjusting-lyrics-vertical-spacing.ly +++ b/input/lsr/adjusting-lyrics-vertical-spacing.ly @@ -1,26 +1,44 @@ %% 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.11.38" +\version "2.12.0" \header { lsrtags = "text, vocal-music, spacing" - texidoc = " -This snippet shows you how to bring the lyrics line closer to the -staff. -" } -% begin verbatim + + texidoces = " +Este fragmento de código muestra cómo situar la línea de base de la +letra más cerca del pentagrama. + +" + doctitlees = "Ajuste del especiado vertical de la letra" + + texidoc = " +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 '{ c4 d e f g f e d c1 } + \new Staff \new Voice = melody \relative c' { + c4 d e f + g4 f e d + c1 + } \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 g f e d c1 } + \override VerticalAxisGroup #'minimum-Y-extent = #'(-1 . 4) + } + \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 #'minimum-Y-extent = #'(-1.2 . 1) + } \lyricsto melody { aa aa aa aa aa aa aa aa aa } >>