]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/single-staff-template-with-notes-and-lyrics.ly
Merge branch 'master' of git://git.sv.gnu.org/lilypond
[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.38"
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. If you want to use
12 automatic beaming, you'll have to change or comment out the relevant
13 line.
14
15 "
16   doctitle = "Single staff template with notes and lyrics"
17 } % begin verbatim
18 melody = \relative c' {
19             \clef treble
20             \key c \major
21             \time 4/4
22          
23             a4 b c d
24          }
25          
26          text = \lyricmode {
27             Aaa Bee Cee Dee
28          }
29          
30          \score{
31             <<
32                \new Voice = "one" {
33                   \autoBeamOff
34                   \melody
35                }
36                \new Lyrics \lyricsto "one" \text
37             >>
38             \layout { }
39             \midi { }
40          }
41