]> 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 %% Tags: vocal-music, template
4 \version "2.11.35"
5
6 \header { texidoc = "
7 This small template demonstrates a simple melody with lyrics. Cut and
8 paste, add notes, then words for the lyrics. This example turns off
9 automatic beaming, which is common for vocal parts. If you want to use
10 automatic beaming, you'll have to change or comment out the relevant
11 line.
12 " }
13 % begin verbatim
14 melody = \relative c' {
15             \clef treble
16             \key c \major
17             \time 4/4
18          
19             a4 b c d
20          }
21          
22          text = \lyricmode {
23             Aaa Bee Cee Dee
24          }
25          
26          \score{
27             <<
28                \new Voice = "one" {
29                   \autoBeamOff
30                   \melody
31                }
32                \new Lyrics \lyricsto "one" \text
33             >>
34             \layout { }
35             \midi { }
36          }
37