]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/single-staff-template-with-notes-and-lyrics.ly
89570cb799efd7f7c0612c25c4d63c3165b99c89
[lilypond.git] / input / lsr / single-staff-template-with-notes-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, template"
7
8   texidoc = "
9 This small template demonstrates a simple melody with lyrics. Cut and
10 paste, add notes, then words for the lyrics. This example turns off
11 automatic beaming, which is common for vocal parts. To use automatic
12 beaming, change or comment out the relevant line.
13
14 "
15   doctitle = "Single staff template with notes and lyrics"
16 } % begin verbatim
17 melody = \relative c' {
18   \clef treble
19   \key c \major
20   \time 4/4
21   
22   a4 b c d
23 }
24
25 text = \lyricmode {
26   Aaa Bee Cee Dee
27 }
28
29 \score{
30   <<
31     \new Voice = "one" {
32       \autoBeamOff
33       \melody
34     }
35     \new Lyrics \lyricsto "one" \text
36   >>
37   \layout { }
38   \midi { }
39 }