LSR: Local update.
[lilypond/mpolesky.git] / Documentation / snippets / adjusting-lyrics-vertical-spacing.ly
blob476c9fecdddfa46ab864396296f0ebebec40f031
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.10"
6 \header {
7 lsrtags = "text, vocal-music, spacing"
9 %% Translation of GIT committish: 341940d3830b59f93a80131471d622c2818afddb
10 texidoces = "
11 Este fragmento de código muestra cómo situar la línea de base de la
12 letra más cerca del pentagrama.
15 doctitlees = "Ajuste del especiado vertical de la letra"
17 %% Translation of GIT committish: 499a511d4166feaada31114e097f86b5e0c56421
18 texidocfr = "
19 Cet extrait illustre la manière de rapprocher la ligne de paroles
20 de la portée.
23 doctitlefr = "Ajustement de l'espacement vertical des paroles"
26 texidoc = "
27 This snippet shows how to bring the lyrics line closer to the staff.
30 doctitle = "Adjusting lyrics vertical spacing"
31 } % begin verbatim
33 % Default layout:
35 \new Staff \new Voice = melody \relative c' {
36 c4 d e f
37 g4 f e d
40 \new Lyrics \lyricsto melody { aa aa aa aa aa aa aa aa aa }
42 % Reducing the minimum space below the staff and above the lyrics:
43 \new Staff \with {
44 \override VerticalAxisGroup #'minimum-Y-extent = #'(-1 . 4)
46 \new Voice = melody \relative c' {
47 c4 d e f
48 g4 f e d
51 \new Lyrics \with {
52 \override VerticalAxisGroup #'minimum-Y-extent = #'(-1.2 . 1)
54 \lyricsto melody { aa aa aa aa aa aa aa aa aa }