-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtemplate.ly
105 lines (92 loc) · 1.8 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
\version "2.18"
%\include "/home/ahinkley/noh.ily"
%\include "/iomega/CP/NOH/noh.ily"
%\include "gregorian.ly"
\include "/iomega/CP/NOH/test/noh_test.ly"
%\include "L:\CP\NOH\test\noh_test.ly"
%Page reference: page NOH_PAGE
%(volume.page)
global = {
\key KEY_SIGNATURE
\cadenzaOn
}
\header {
title = "GABC_TITLE"
tagline = ""
composer = ""
}
\paper {
#(include-special-characters)
oddHeaderMarkup = \markup \fill-line {
\line {}
\center-column {
\on-the-fly #first-page " "
\on-the-fly #not-first-page "GABC_TITLE"
}
\line { \on-the-fly #print-page-number-check-first \fromproperty #'page:page-number-string }
}
evenHeaderMarkup = \markup \fill-line {
\line { \on-the-fly #print-page-number-check-first \fromproperty #'page:page-number-string }
\center-column { "GABC_TITLE" }
\line {}
}
}
chantText = \lyricmode {
LYRICS
}
chantMusic = {
SOPRANO_PART
}
altoMusic = {
ALTO_PART
}
tenorMusic = {
TENOR_PART
}
bassMusic = {
BASS_PART
}
voiceLines = {
\voiceLineStyle
VOICELINES
}
\score{
<<
\new GrandStaff <<
\set GrandStaff.autoBeaming = ##f
\set GrandStaff.instrumentName = \markup \center-column {
"GABC_GENRE"
"GABC_MODE"
}
\new Staff = up <<
\new Voice = "chant" {
\voiceOne \global \chantMusic
}
\new Voice {
\voiceTwo \global \altoMusic
}
>>
\new Staff = down <<
\clef bass
\new Voice {
\voiceOne \global \tenorMusic
}
\new Voice {
\voiceTwo \global \bassMusic
}
\new Voice {
\voiceThree \global \voiceLines
}
>>
>>
\new Lyrics \lyricsto chant {
\chantText
}
>>
\layout{
#(layout-set-staff-size 15)
}
\midi{
\tempo 4 = 125
}
}