X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Flsr%2Fadjusting-lyrics-vertical-spacing.ly;h=57c93e78fbf83fc23cfce6f7f665858607bb4e66;hb=e00af3ee09ebea4592c5eab0596314994c241ee0;hp=fc9ace44cf721a1676ca0e52b38027ee5d8c5ce8;hpb=1c0ec6f412462ee0f773b09b079847d2be03f64f;p=lilypond.git diff --git a/input/lsr/adjusting-lyrics-vertical-spacing.ly b/input/lsr/adjusting-lyrics-vertical-spacing.ly index fc9ace44cf..57c93e78fb 100644 --- a/input/lsr/adjusting-lyrics-vertical-spacing.ly +++ b/input/lsr/adjusting-lyrics-vertical-spacing.ly @@ -1,28 +1,44 @@ -%% Do not edit this file; it is auto-generated from LSR! -%% Tags: text, vocal-music -\version "2.11.35" +%% 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.62" -\header { texidoc = " -This snippets shows you how to bring the lyrics line closer to the -Staff. -" } +\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. + +" + doctitle = "Adjusting lyrics vertical spacing" +} % 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 } - >> -} + \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: -\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 } - >> -} +% 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 } +>>