]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/adjusting-lyrics-vertical-spacing.ly
Merge branch 'master' of ssh+git://git.sv.gnu.org/srv/git/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
21 \score {
22   <<
23     \new Staff \with {
24       \override VerticalAxisGroup #'minimum-Y-extent = #'(-1. 4)}
25     \new Voice = m \relative c'{ c4 d e f g f e d c1 }
26     \new Lyrics \with {
27       \override VerticalAxisGroup #'minimum-Y-extent = #'(-1.2 . 1)}
28     \lyricsto m {aa aa aa aa aa aa aa aa aa }
29   >>
30
31   \header {
32     tagline = ""
33   }
34 }