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