]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/piano-template-with-melody-and-lyrics.ly
502e65edf3ee5d03f35870806b86ff8acfcb1f8b
[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.57"
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 text = \lyricmode {
24   Aaa Bee Cee Dee
25 }
26
27 upper = \relative c'' {
28   \clef treble
29   \key c \major
30   \time 4/4
31   
32   a4 b c d  
33 }
34
35 lower = \relative c {
36   \clef bass
37   \key c \major
38   \time 4/4
39   
40   a2 c  
41 }
42
43 \score {
44   <<
45     \new Voice = "mel" { \autoBeamOff \melody }
46     \new Lyrics \lyricsto mel \text    
47     \new PianoStaff <<
48       \new Staff = "upper" \upper
49       \new Staff = "lower" \lower
50     >>
51   >>
52   \layout {
53     \context { \RemoveEmptyStaffContext }
54   }
55   \midi { }
56 }