]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/piano-template-with-centered-lyrics.ly
9d3e6e36f0688a90136bd3f1e980c3a7ec3b53b7
[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.57"
4
5 \header {
6   lsrtags = "text, keyboards, template"
7
8   texidoc = "
9 Instead of having a full staff for the melody and lyrics, lyrics can be
10 centered between the staves of a piano staff.
11
12 "
13   doctitle = "Piano template with centered lyrics"
14 } % begin verbatim
15 upper = \relative c'' {
16   \clef treble
17   \key c \major
18   \time 4/4
19   
20   a4 b c d  
21 }
22
23 lower = \relative c {
24   \clef bass
25   \key c \major
26   \time 4/4
27   
28   a2 c  
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 }