1
0
Fork 0
mirror of https://github.com/kastdeur/lilydrum.git synced 2024-09-28 05:54:42 +02:00
lilydrum/header_default.ily
Eric Teunis de Boone 6d9bb716d9 New scores and versions
Added flourishing symbols, however not yet complete: want a function not markup
Further update of lilydrum
Started a cheatsheet
Removed fullscore attempts, will be retried later
2015-10-16 23:25:22 +02:00

33 lines
939 B
Text
Executable file

%{
Header formatting for tunes. Customize to get your name in the tag line.
%}
\version "2.16.0"
today = #(strftime "%B %e, %Y" (localtime (current-time)))
\paper {
raggedbottom = ##t
tagline = \markup {
\line {
"Cpl ET de Boone, Seaforths of Holland,"
\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 }
}
$(if (not (ly:get-option 'without-comment))
(markup #:justify-field 'header:comment)
(markup))
}
}
}