]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/adjusting-lyrics-vertical-spacing.ly
Change stringTunings from list of semitones to list of pitches
[lilypond.git] / Documentation / snippets / adjusting-lyrics-vertical-spacing.ly
1 % Do not edit this file; it is automatically
2 % generated from Documentation/snippets/new
3 % This file is in the public domain.
4 %% Note: this file works from version 2.13.42
5 \version "2.13.46"
6
7 \header {
8 %% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00
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
17 %% Translation of GIT committish: 9a65042d49324f2e3dff18c4b0858def81232eea
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   lsrtags = "text, vocal-music, spacing"
27   texidoc = "
28 This snippet shows how to bring the lyrics line closer to the staff.
29
30 "
31   doctitle = "Adjusting lyrics vertical spacing"
32 } % begin verbatim
33
34
35 % Default layout:
36 <<
37   \new Staff \new Voice = melody \relative c' {
38     c4 d e f
39     g4 f e d
40     c1
41   }
42   \new Lyrics \lyricsto melody { aa aa aa aa aa aa aa aa aa }
43
44   % Reducing the minimum space below the staff and above the lyrics:
45   \new Staff {
46     \new Voice = melody \relative c' {
47       c4 d e f
48       g4 f e d
49       c1
50     }
51   }
52   \new Lyrics \with {
53     \override VerticalAxisGroup #'nonstaff-relatedstaff-spacing = #'((basic-distance . 1))
54   }
55   \lyricsto melody { aa aa aa aa aa aa aa aa aa }
56 >>