]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/single-staff-template-with-notes-and-lyrics.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / Documentation / snippets / single-staff-template-with-notes-and-lyrics.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.di.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.18.0"
8
9 \header {
10   lsrtags = "really-simple, template, vocal-music"
11
12   texidoc = "
13 This small template demonstrates a simple melody with lyrics. Cut and
14 paste, add notes, then words for the lyrics. This example turns off
15 automatic beaming, which is common for vocal parts. To use automatic
16 beaming, change or comment out the relevant line.
17
18 "
19   doctitle = "Single staff template with notes and lyrics"
20 } % begin verbatim
21
22 melody = \relative c' {
23   \clef treble
24   \key c \major
25   \time 4/4
26
27   a4 b c d
28 }
29
30 text = \lyricmode {
31   Aaa Bee Cee Dee
32 }
33
34 \score{
35   <<
36     \new Voice = "one" {
37       \autoBeamOff
38       \melody
39     }
40     \new Lyrics \lyricsto "one" \text
41   >>
42   \layout { }
43   \midi { }
44 }