]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/piano-template-with-centered-lyrics.ly
Merge branch 'master' of ssh+git://git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / input / lsr / piano-template-with-centered-lyrics.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, piano-music, template"
7  texidoc = "
8 Instead of having a full staff for the melody and lyrics, you can place
9 the lyrics between the piano staff (and omit the separate melody
10 staff).
11 " }
12 % begin verbatim
13 upper = \relative c'' {
14   \clef treble
15   \key c \major
16   \time 4/4
17   
18   a b c d
19   
20 }
21
22 lower = \relative c {
23   \clef bass
24   \key c \major
25   \time 4/4
26   
27   a2 c
28   
29 }
30
31 text = \lyricmode {
32   Aaa Bee Cee Dee
33 }
34
35 \score {
36   \new GrandStaff <<
37     \new Staff = upper { \new Voice = "singer" \upper }
38     \new Lyrics \lyricsto "singer" \text
39     \new Staff = lower { \lower }
40   >>
41   \layout {
42     \context {
43       \GrandStaff
44       \accepts "Lyrics"
45     }
46     \context {
47       \Lyrics
48       \consists "Bar_engraver"
49     }
50   }
51   \midi { }
52 }