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