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