2008-04-16 09:32:57 +02:00
|
|
|
%{
|
|
|
|
Header formatting for bagpipe tunes. Customize to get your name in the tag line.
|
|
|
|
%}
|
|
|
|
|
2012-09-16 21:04:09 +02:00
|
|
|
\version "2.16.0"
|
2008-04-16 09:32:57 +02:00
|
|
|
|
|
|
|
% Bring in the time/date package. Set format to month day, year
|
|
|
|
|
|
|
|
#(use-modules (srfi srfi-19))
|
2011-02-12 18:39:44 +01:00
|
|
|
today = #(date->string (current-date) "~B ~e, ~Y")
|
2008-04-16 09:32:57 +02:00
|
|
|
|
|
|
|
\paper {
|
|
|
|
raggedbottom = ##t
|
|
|
|
tagline = \markup {
|
|
|
|
\line {
|
2011-11-01 00:30:54 +01:00
|
|
|
"P/S Sven Axelsson, MPD,"
|
|
|
|
\with-url #"http://svenax.net/site/sheetmusic"
|
|
|
|
"http://svenax.net/site/sheetmusic"
|
|
|
|
\concat { "(rev. " \today ")" }
|
2008-04-16 09:32:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
scoreTitleMarkup = \markup {
|
|
|
|
\override #'(baseline-skip . 3)
|
|
|
|
\column {
|
|
|
|
\fill-line {
|
|
|
|
\column {
|
|
|
|
\large \bold \fromproperty #'header:title
|
|
|
|
\bold \fromproperty #'header:subtitle
|
|
|
|
}
|
|
|
|
\fromproperty #'header:meter
|
2011-02-12 18:39:44 +01:00
|
|
|
\line { \fromproperty #'header:composer " " \italic \fromproperty #'header:arranger }
|
2008-04-16 09:32:57 +02:00
|
|
|
}
|
2012-09-16 21:04:09 +02:00
|
|
|
$(if (not (ly:get-option 'without-comment))
|
|
|
|
(markup #:justify-field 'header:comment)
|
|
|
|
(markup))
|
2008-04-16 09:32:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|