]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/adjusting-lyrics-vertical-spacing.ly
Merge master into nested-bookparts
[lilypond.git] / input / lsr / adjusting-lyrics-vertical-spacing.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.11.62"
4
5 \header {
6   lsrtags = "text, vocal-music, spacing"
7
8   texidoces = "
9 Este fragmento de código muestra cómo situar la línea de base de la
10 letra más cerca del pentagrama.
11
12 "
13   doctitlees = "Ajuste del especiado vertical de la letra"
14
15   texidoc = "
16 This snippet shows how to bring the lyrics line closer to the staff.
17
18 "
19   doctitle = "Adjusting lyrics vertical spacing"
20 } % begin verbatim
21 % Default layout:
22 <<
23   \new Staff \new Voice = melody \relative c' {
24     c4 d e f
25     g4 f e d
26     c1
27   }
28   \new Lyrics \lyricsto melody { aa aa aa aa aa aa aa aa aa }
29
30 % Reducing the minimum space below the staff and above the lyrics:
31   \new Staff \with {
32     \override VerticalAxisGroup #'minimum-Y-extent = #'(-1 . 4)
33   }
34   \new Voice = melody \relative c' {
35     c4 d e f
36     g4 f e d
37     c1
38   }
39   \new Lyrics \with {
40     \override VerticalAxisGroup #'minimum-Y-extent = #'(-1.2 . 1)
41   }
42   \lyricsto melody { aa aa aa aa aa aa aa aa aa }
43 >>