]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/adjusting-lyrics-vertical-spacing.ly
Merge branch 'master' of ssh://jomand@git.sv.gnu.org/srv/git/lilypond into 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.12.0"
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   texidocfr = "
16 Cet extrait illustre la manière de rapprocher la ligne de paroles 
17 de la portée.
18
19 "
20   doctitlefr = "Ajustement de l'espacement vertical des paroles"
21
22
23   texidoc = "
24 This snippet shows how to bring the lyrics line closer to the staff.
25
26 "
27   doctitle = "Adjusting lyrics vertical spacing"
28 } % begin verbatim
29
30 % Default layout:
31 <<
32   \new Staff \new Voice = melody \relative c' {
33     c4 d e f
34     g4 f e d
35     c1
36   }
37   \new Lyrics \lyricsto melody { aa aa aa aa aa aa aa aa aa }
38
39 % Reducing the minimum space below the staff and above the lyrics:
40   \new Staff \with {
41     \override VerticalAxisGroup #'minimum-Y-extent = #'(-1 . 4)
42   }
43   \new Voice = melody \relative c' {
44     c4 d e f
45     g4 f e d
46     c1
47   }
48   \new Lyrics \with {
49     \override VerticalAxisGroup #'minimum-Y-extent = #'(-1.2 . 1)
50   }
51   \lyricsto melody { aa aa aa aa aa aa aa aa aa }
52 >>