]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/adjusting-lyrics-vertical-spacing.ly
Merge branch 'master' of /home/lilycvs/git/lily/
[lilypond.git] / input / lsr / adjusting-lyrics-vertical-spacing.ly
1 %% Do not edit this file; it is auto-generated from LSR!
2 %% Tags: text, vocal-music
3 \version "2.11.35"
4
5 \header { texidoc = "
6 This snippets shows you how to bring the lyrics line closer to the
7 Staff.
8 " }
9
10 % Default layout:
11 \score{
12 <<
13 \new Staff \new Voice = m \relative c'{ c4 d e f g f e d c1 }
14 \new Lyrics \lyricsto m {aa aa aa aa aa aa aa aa aa }
15  >>
16 }
17
18 % Reducing the minimum space below the Staff and above the Lyrics:
19 \score{
20 <<
21 \new Staff \with {\override VerticalAxisGroup #'minimum-Y-extent = #'(-1
22 . 4)}
23  \new Voice = m \relative c'{ c4 d e f g f e d c1 }
24 \new Lyrics \with {\override VerticalAxisGroup #'minimum-Y-extent =
25 #'(-1.2 . 1)}
26 \lyricsto m {aa aa aa aa aa aa aa aa aa }
27  >>
28 }