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