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