-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.ly
85 lines (67 loc) · 2.08 KB
/
main.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
%%% ================================================================ [ main.ly ]
%%% Description: Naptime - Main score for "Funeral Town"
%%% Copyright: (c) 2016-2017 Naptaker
%%% License: see LICENSE
%%% ==================================================================== [ EOH ]
\version "2.24.0"
%%% ======================================================== [ Naptaker Config ]
\include "oll-core/package.ily"
\loadPackage naptaker
\setOption naptaker.staff-size #13
\setOption naptaker.extra-layout \layout {
\omit Staff.InstrumentName
\omit Score.FretBoard
indent = 0\in
\override Score.TrillSpanner.bound-details.left.text = ##f
}
%%% ================================================================= [ Header ]
Key = { \key es \minor }
Tempo = { \tempo 4 = 152 }
global = { \Tempo \defaultTimeSignature \time 4/4 }
\header {
%% dedication = "Welcome to"
title = \markup \fontsize #4 "Funeral Town"
%% subtitle = \markup \teeny "(Eat a Dead Man)"
composer = "E. Bailey, P. Drum and S. Albers"
arranger = "Naptaker"
opus = "Naptime"
copyright = "© 2016-2017 Naptaker"
%% tagline = \markup \teeny "(Eat a Dead Man)"
%% tagline = ##f
}
%%% ================================================================= [ Layout ]
\paper {
two-sided = ##t
print-first-page-number = ##t
evenHeaderMarkup = \markup {
\column {
\fill-line {
\null
\line {
\if \should-print-page-number
\fromproperty #'page:page-number-string
}
}
}
}
oddHeaderMarkup = \markup {
\column {
\fill-line {
\line {
\if \should-print-page-number
\fromproperty #'page:page-number-string
}
\null
}
}
}
}
%%% =================================================================== [ Grid ]
\templateInit
#'("meta" "chords" "guitar strum" "guitar" "bass" "drums up" "drums down")
#'(8 8 6 8 2 4 6 2)
\Naptaker
\gridDisplay
\gridCheck
\include "naptaker/mtf-improviso.ily"
%%% ==================================================================== [ EOF ]