X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Flsr%2Fadjusting-lyrics-vertical-spacing.ly;h=a4006b90a06af7e8e1152c90d633704c65cd8b57;hb=0387f04497978e37b335a8b99eec905499d6ad0f;hp=92cbf6226321d6e1d542518e10023fad2449501e;hpb=1b71244a169277f4aabbbd79a8d708c35d074438;p=lilypond.git diff --git a/input/lsr/adjusting-lyrics-vertical-spacing.ly b/input/lsr/adjusting-lyrics-vertical-spacing.ly index 92cbf62263..a4006b90a0 100644 --- a/input/lsr/adjusting-lyrics-vertical-spacing.ly +++ b/input/lsr/adjusting-lyrics-vertical-spacing.ly @@ -1,34 +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. -%% Tags: text, vocal-music, spacing -\version "2.11.35" +\version "2.11.64" -\header { texidoc = " -This snippets shows you how to bring the lyrics line closer to the -Staff. -" } -% begin verbatim -% Default layout: -\score{ - << - \new Staff \new Voice = m \relative c'{ c4 d e f g f e d c1} - \new Lyrics \lyricsto m {aa aa aa aa aa aa aa aa aa } - >> -} +\header { + lsrtags = "text, vocal-music, spacing" + + 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. -% Reducing the minimum space below the Staff and above the Lyrics: +" + doctitle = "Adjusting lyrics vertical spacing" +} % begin verbatim -\score { - << - \new Staff \with { - \override VerticalAxisGroup #'minimum-Y-extent = #'(-1. 4)} - \new Voice = m \relative c'{ c4 d e f g f e d c1 } - \new Lyrics \with { - \override VerticalAxisGroup #'minimum-Y-extent = #'(-1.2 . 1)} - \lyricsto m {aa aa aa aa aa aa aa aa aa } - >> +% Default layout: +<< + \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 } - \header { - tagline = "" +% 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 + } + \new Lyrics \with { + \override VerticalAxisGroup #'minimum-Y-extent = #'(-1.2 . 1) } -} + \lyricsto melody { aa aa aa aa aa aa aa aa aa } +>>