]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/adjusting-lyrics-vertical-spacing.ly
406558b662e88600bb1bcc883d823f8cfc38e882
[lilypond.git] / Documentation / snippets / adjusting-lyrics-vertical-spacing.ly
1 % DO NOT EDIT this file manually; it is automatically
2 % generated from Documentation/snippets/new
3 % Make any changes in Documentation/snippets/new/
4 % and then run scripts/auxiliar/makelsr.py
5 %
6 % This file is in the public domain.
7 %% Note: this file works from version 2.13.42
8 \version "2.13.42"
9
10 \header {
11 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
12   texidoces = "
13 Este fragmento de código muestra cómo situar la línea de base de la
14 letra más cerca del pentagrama.
15
16 "
17   doctitlees = "Ajuste del especiado vertical de la letra"
18
19
20 %% Translation of GIT committish: 9a65042d49324f2e3dff18c4b0858def81232eea
21   texidocfr = "
22 Cet extrait illustre la manière de rapprocher la ligne de paroles
23 de la portée.
24
25 "
26   doctitlefr = "Ajustement de l'espacement vertical des paroles"
27
28
29   lsrtags = "text, vocal-music, spacing"
30   texidoc = "
31 This snippet shows how to bring the lyrics line closer to the staff.
32
33 "
34   doctitle = "Adjusting lyrics vertical spacing"
35 } % begin verbatim
36
37
38 % Default layout:
39 <<
40   \new Staff \new Voice = melody \relative c' {
41     c4 d e f
42     g4 f e d
43     c1
44   }
45   \new Lyrics \lyricsto melody { aa aa aa aa aa aa aa aa aa }
46
47   % Reducing the minimum space below the staff and above the lyrics:
48   \new Staff {
49     \new Voice = melody \relative c' {
50       c4 d e f
51       g4 f e d
52       c1
53     }
54   }
55   \new Lyrics \with {
56     \override VerticalAxisGroup #'nonstaff-relatedstaff-spacing = #'((basic-distance . 1))
57   }
58   \lyricsto melody { aa aa aa aa aa aa aa aa aa }
59 >>