]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/adjusting-lyrics-vertical-spacing.ly
Doc: LSR update.
[lilypond.git] / Documentation / snippets / adjusting-lyrics-vertical-spacing.ly
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.16"
5
6 \header {
7   lsrtags = "text, vocal-music, spacing"
8
9 %% Translation of GIT committish: 00ef2ac3dd16e21c9ffdffaa4d6d043a3f1a76e6
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.
13
14 "
15   doctitlees = "Ajuste del especiado vertical de la letra"
16
17
18 %% Translation of GIT committish: 499a511d4166feaada31114e097f86b5e0c56421
19   texidocfr = "
20 Cet extrait illustre la manière de rapprocher la ligne de paroles
21 de la portée.
22
23 "
24   doctitlefr = "Ajustement de l'espacement vertical des paroles"
25
26
27   texidoc = "
28 This snippet shows how to bring the lyrics line closer to the staff.
29
30 "
31   doctitle = "Adjusting lyrics vertical spacing"
32 } % begin verbatim
33
34 % Default layout:
35 <<
36   \new Staff \new Voice = melody \relative c' {
37     c4 d e f
38     g4 f e d
39     c1
40   }
41   \new Lyrics \lyricsto melody { aa aa aa aa aa aa aa aa aa }
42
43 % Reducing the minimum space below the staff and above the lyrics:
44   \new Staff \with {
45     \override VerticalAxisGroup #'minimum-Y-extent = #'(-1 . 4)
46   }
47   \new Voice = melody \relative c' {
48     c4 d e f
49     g4 f e d
50     c1
51   }
52   \new Lyrics \with {
53     \override VerticalAxisGroup #'minimum-Y-extent = #'(-1.2 . 1)
54   }
55   \lyricsto melody { aa aa aa aa aa aa aa aa aa }
56 >>
57