blob: 336fdf69ccc6f2dd569bc80956dcf6f9124b5182 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
%% DO NOT EDIT this file manually; it is automatically
%% generated from LSR http://lsr.di.unimi.it
%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
%% and then run scripts/auxiliar/makelsr.py
%%
%% This file is in the public domain.
\version "2.19.2"
\header {
= "chords, really-simple, template"
= "
Want to prepare a lead sheet with a melody and chords? Look no further!
"
= "Single staff template with notes and chords"
} % begin verbatim
melody = \relative c' {
\clef treble
\key c \major
\time 4/4
f4 e8[ c] d4 g
a2 ~ 2
}
harmonies = \chordmode {
c4:m f:min7 g:maj c:aug
d2:dim b:sus
}
\score {
<<
\new ChordNames {
\set chordChanges = ##t
\harmonies
}
\new Staff \melody
>>
\layout{ }
\midi { }
}
|