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