]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/piano-template-with-melody-and-lyrics.ly
Merge commit 'ce4b499'
[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          text = \lyricmode {
21             Aaa Bee Cee Dee
22          }
23          
24          upper = \relative c'' {
25             \clef treble
26             \key c \major
27             \time 4/4
28          
29             a b c d
30          }
31          
32          lower = \relative c {
33             \clef bass
34             \key c \major
35             \time 4/4
36          
37             a2 c
38          }
39          
40          \score {
41             <<
42                \new Voice = "mel" {
43                    \autoBeamOff
44                    \melody
45                }
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          }
58