1
0
Fork 0
mirror of https://github.com/kastdeur/lilydrum.git synced 2024-09-28 05:54:42 +02:00
lilydrum/header_book.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

42 lines
1.1 KiB
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 Eric Teunis de Boone, Seaforths of Holland,"
\concat { "(rev. " \today ")" }
}
}
bookTitleMarkup = \markup {
\override #'(baseline-skip . 3.5)
\column {
\fill-line { \fromproperty #'header:dedication }
\override #'(baseline-skip . 3.5)
\column {
\huge \larger \bold
\fill-line {
\larger \fromproperty #'header:title
}
\fill-line {
\large \smaller \bold
\larger \fromproperty #'header:subtitle
}
\fill-line {
\smaller \bold
\fromproperty #'header:source
}
\fill-line {
\line { \fromproperty #'header:meter }
\line { \fromproperty #'header:composer " " \italic \fromproperty #'header:arranger }
}
}
}
}
}