-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.ly
78 lines (67 loc) · 1.06 KB
/
template.ly
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
\version "2.22.0"
\language "english"
\header {
title = ""
%subtitle = ""
composer = ""
poet = ""
tagline = ""
%copyright = ""
}
\paper {
#(set-paper-size "a4")
}
global = {
\key c \major
\time 4/4
\tempo "Slow" 4=52
\set Score.connectArpeggios = ##t
}
verseA = \lyricmode {
%Lyrics go here
}
singer = \relative c' {
\global
%Melody goes here
}
\addlyrics \verseA
right = \relative c' {
\global
%Right hand piano goes here
}
left = \relative c' {
\global
\clef "bass"
%Left hand piano goes here
}
chordsPart = \chords {
\set chordChanges = ##t
\set noChordSymbol = ""
\set majorSevenSymbol = \markup { "maj7" }
%Chords go here
}
voicePart = \new Staff \with {
midiInstrument = "acoustic grand"
} \singer
pianoPart = \new PianoStaff \with {
midiInstrument = "acoustic grand"
} <<
\new Staff \right
\new Staff \left
>>
\score {
<<
\chordsPart
\voicePart
\pianoPart
>>
\layout { }
}
\score {
<<
%\unfoldRepeats \chordsPart
\unfoldRepeats \voicePart
\unfoldRepeats \pianoPart
>>
\midi { }
}