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