]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/new/single-staff-template-with-notes-and-chords.ly
Issue 4614/6: Amend snippet single-staff-template-with-notes-and-chords.ly
[lilypond.git] / Documentation / snippets / new / single-staff-template-with-notes-and-chords.ly
1 \version "2.19.28"
2
3 \header {
4   lsrtags = "chords, really-simple, template"
5
6   texidoc = "
7 Want to prepare a lead sheet with a melody and chords? Look no further!
8
9
10 "
11   doctitle = "Single staff template with notes and chords"
12 }
13 melody = \relative c' {
14   \clef treble
15   \key c \major
16   \time 4/4
17
18   f4 e8[ c] d4 g
19   a2 ~ a
20 }
21
22 harmonies = \chordmode {
23   c4:m f:min7 g:maj c:aug
24   d2:dim b4:5 e:sus
25 }
26
27 \score {
28   <<
29     \new ChordNames {
30       \set chordChanges = ##t
31       \harmonies
32     }
33     \new Staff \melody
34   >>
35   \layout{ }
36   \midi { }
37 }