]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/single-staff-template-with-notes-and-chords.ly
Merge branch 'master' into dev/texi2html
[lilypond.git] / input / lsr / single-staff-template-with-notes-and-chords.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.51"
4
5 \header {
6   lsrtags = "chords, template"
7
8   texidoc = "
9 Want to prepare a lead sheet with a melody and chords? Look no further!
10
11
12 "
13   doctitle = "Single staff template with notes and chords"
14 } % begin verbatim
15 melody = \relative c' {
16   \clef treble
17   \key c \major
18   \time 4/4
19   
20   f4 e8[ c] d4 g
21   a2 ~ a
22 }
23
24 harmonies = \chordmode {
25   c4:m f:min7 g:maj c:aug
26   d2:dim b:sus
27 }
28
29 \score {
30   <<
31     \new ChordNames {
32       \set chordChanges = ##t
33       \harmonies
34     }
35     \new Staff \melody
36   >>  
37   \layout{ }
38   \midi { }
39 }