]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/adjusting-lyrics-vertical-spacing.ly
Merge branch 'master' of ssh://kainhofer@git.sv.gnu.org/srv/git/lilypond into dev...
[lilypond.git] / input / lsr / 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.11.38"
4
5 \header {
6   lsrtags = "text, vocal-music, spacing"
7  texidoc = "
8 This snippet shows you how to bring the lyrics line closer to the
9 staff.
10 " }
11 % begin verbatim
12 % Default layout:
13 <<
14   \new Staff \new Voice = melody \relative c '{ c4 d e f g f e d c1 }
15   \new Lyrics \lyricsto melody { aa aa aa aa aa aa aa aa aa }
16 >>
17
18 % Reducing the minimum space below the staff and above the lyrics:
19 <<
20   \new Staff \with {
21     \override VerticalAxisGroup #'minimum-Y-extent = #'(-1 . 4) }
22   \new Voice = melody \relative c' { c4 d e f g f e d c1 }
23   \new Lyrics \with {
24     \override VerticalAxisGroup #'minimum-Y-extent = #'(-1.2 . 1) }
25   \lyricsto melody { aa aa aa aa aa aa aa aa aa }
26 >>