-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathheader_default.ly
52 lines (48 loc) · 1.47 KB
/
header_default.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
%{
Header formatting for bagpipe tunes. Customize to get your name in the tag line.
%}
\version "2.24.0"
today = #(strftime "%B %e, %Y" (localtime (current-time)))
comment = #(if (ly:get-option 'without-comment)
""
(markup #:vspace 1.2 #:justify-field 'header:comment))
\paper {
score-markup-spacing = #'((basic-distance . 12)
(minimum-distance . 8)
(padding . 0.5)
(stretchability . 60))
markup-markup-spacing = #'((basic-distance . 6)
(minimum-distance . 4)
(padding . 0.5))
top-markup-spacing = #'((basic-distance . 6)
(minimum-distance . 4)
(padding . 1))
raggedbottom = ##t
tagline = \markup {
\line {
"P/S Sven Axelsson, MPD,"
\with-url #"http://svenax.net/site/sheetmusic"
"http://svenax.net/site/sheetmusic"
\concat { "(rev. " \today ")" }
}
}
scoreTitleMarkup = \markup {
\override #'(baseline-skip . 3)
\column {
\fill-line {
\column {
\large \bold \fromproperty #'header:title
\bold \fromproperty #'header:subtitle
}
\fromproperty #'header:meter
\line {
\fromproperty #'header:composer
\italic \fromproperty #'header:arranger
\tiny \fromproperty #'header:date
}
}
\comment
\vspace #0.6
}
}
}