]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/adjusting-lyrics-vertical-spacing.ly
209dfebb56baebe6582554ada67e56cca03ad107
[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 = "spacing, workaround, correction-wanted, text, vocal-music"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
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: f5cfaf8ef4ac347702f554af0944ef0d8396e73a
22   texidocfr = "
23 Cet extrait illustre la manière de réduire l'espace entre la ligne de
24 paroles et 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
33 "
34   doctitle = "Adjusting lyrics vertical spacing"
35 } % begin verbatim
36
37 % Default layout:
38 <<
39   \new Staff \new Voice = melody \relative c' {
40     c4 d e f
41     g4 f e d
42     c1
43   }
44   \new Lyrics \lyricsto melody { aa aa aa aa aa aa aa aa aa }
45
46   \new Staff {
47     \new Voice = melody \relative c' {
48       c4 d e f
49       g4 f e d
50       c1
51     }
52   }
53   % Reducing the minimum space below the staff and above the lyrics:
54   \new Lyrics \with {
55     \override VerticalAxisGroup #'nonstaff-relatedstaff-spacing = #'((basic-distance . 1))
56   }
57   \lyricsto melody { aa aa aa aa aa aa aa aa aa }
58 >>