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