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