]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/adjusting-lyrics-vertical-spacing.ly
Merge branch 'master' of ssh+git://git.sv.gnu.org/srv/git/lilypond
[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.66"
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
22 % Default layout:
23 <<
24   \new Staff \new Voice = melody \relative c' {
25     c4 d e f
26     g4 f e d
27     c1
28   }
29   \new Lyrics \lyricsto melody { aa aa aa aa aa aa aa aa aa }
30
31 % Reducing the minimum space below the staff and above the lyrics:
32   \new Staff \with {
33     \override VerticalAxisGroup #'minimum-Y-extent = #'(-1 . 4)
34   }
35   \new Voice = melody \relative c' {
36     c4 d e f
37     g4 f e d
38     c1
39   }
40   \new Lyrics \with {
41     \override VerticalAxisGroup #'minimum-Y-extent = #'(-1.2 . 1)
42   }
43   \lyricsto melody { aa aa aa aa aa aa aa aa aa }
44 >>