]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/single-staff-template-with-notes-and-chords.ly
Merge branch 'lilypond/translation' of ssh://trettig@git.sv.gnu.org/srv/git/lilypond...
[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.38"
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 ~ a2 |
22          }
23          
24          harmonies = \chordmode {
25             c4:m f:min7 g:maj c:aug d2:dim b:sus
26          }
27          
28          \score {
29             <<
30                \new ChordNames {
31                   \set chordChanges = ##t
32                   \harmonies
33                }
34             \new Staff \melody
35             >>
36          
37             \layout{ }
38             \midi { }
39          }
40