]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/piano-template-with-melody-and-lyrics.ly
Merge branch 'master' of ssh+git://hanwen@git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / input / lsr / piano-template-with-melody-and-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.46"
4
5 \header {
6   lsrtags = "vocal-music, keyboards, template"
7
8   texidoc = "
9 Here is a typical song format: one staff with the melody and lyrics,
10 with piano accompaniment underneath. 
11
12 "
13   doctitle = "Piano template with melody and lyrics"
14 } % begin verbatim
15 melody = \relative c'' {
16   \clef treble
17   \key c \major
18   \time 4/4
19   
20   a b c d
21   
22 }
23
24 text = \lyricmode {
25   Aaa Bee Cee Dee
26 }
27
28 upper = \relative c'' {
29   \clef treble
30   \key c \major
31   \time 4/4
32   
33   a b c d
34   
35 }
36
37 lower = \relative c {
38   \clef bass
39   \key c \major
40   \time 4/4
41   
42   a2 c
43   
44 }
45
46 \score {
47   <<
48     \new Voice = "mel" { \autoBeamOff \melody }
49     \new Lyrics \lyricsto mel \text
50     
51     \new PianoStaff <<
52       \new Staff = "upper" \upper
53       \new Staff = "lower" \lower
54     >>
55   >>
56   \layout {
57     \context { \RemoveEmptyStaffContext }
58   }
59   \midi { }
60 }