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