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