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