2018-02-14 01:34:54 +01:00
|
|
|
%{
|
2018-02-14 14:25:21 +01:00
|
|
|
Lilypond Stylesheet for my tinwhistle tunebook
|
2018-02-14 01:34:54 +01:00
|
|
|
%}
|
|
|
|
|
|
|
|
\version "2.19.80"
|
|
|
|
|
2018-02-14 14:25:21 +01:00
|
|
|
% Default Titling per score
|
|
|
|
%\include "/home/ericteunis/projects/scoring/lib/styles/defs/header_default.ily"
|
|
|
|
%{0
|
|
|
|
Header formatting for tunes.
|
|
|
|
%}
|
|
|
|
|
|
|
|
\version "2.16.0"
|
2018-02-14 01:34:54 +01:00
|
|
|
|
2018-02-14 14:25:21 +01:00
|
|
|
\paper {
|
|
|
|
scoreTitleMarkup = \markup {
|
|
|
|
\override #'(baseline-skip . 3)
|
|
|
|
\column {
|
|
|
|
\fill-line {
|
|
|
|
\column {
|
|
|
|
\large \bold \fromproperty #'header:title
|
|
|
|
\bold \fromproperty #'header:subtitle
|
|
|
|
}
|
|
|
|
\fromproperty #'header:meter
|
|
|
|
\column \right-align {
|
|
|
|
\fromproperty #'header:instrument
|
|
|
|
\line {
|
|
|
|
\fromproperty #'header:composer
|
|
|
|
$(if (and (ly:get-option 'header:composer) (ly:get-option 'header:arranger))
|
|
|
|
(markup " "))
|
|
|
|
$(if (ly:get-option 'header:arranger)
|
|
|
|
(markup " Arr."))
|
|
|
|
\italic \fromproperty #'header:arranger }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$(if (not (ly:get-option 'without-comment))
|
|
|
|
(markup #:justify-field 'header:comment)
|
|
|
|
(markup))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
oddFooterMarkup = \markup {
|
|
|
|
\column {
|
|
|
|
\fill-line { \fromproperty #'header:copyright }
|
|
|
|
\fill-line { \fromproperty #'header:tagline }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-02-14 01:34:54 +01:00
|
|
|
% Remove all book titling
|
2018-02-14 14:25:21 +01:00
|
|
|
%\include "/home/ericteunis/projects/scoring/lib/styles/defs/no_book_header.ily"
|
|
|
|
\paper {
|
|
|
|
bookTitleMarkup = {}
|
|
|
|
}
|
|
|
|
|
|
|
|
% Get My own tagline
|
|
|
|
\include "/home/ericteunis/projects/scoring/lib/styles/defs/tagline.ily"
|
|
|
|
|
|
|
|
|
|
|
|
\layout {
|
|
|
|
indent = 0.0
|
|
|
|
ragged-right = ##f
|
|
|
|
ragged-bottom = ##f
|
|
|
|
|
|
|
|
\context {
|
|
|
|
\Staff
|
|
|
|
% Messes with indentation
|
|
|
|
\remove "Instrument_name_engraver"
|
|
|
|
|
|
|
|
% Cool to see, whether it can be played
|
|
|
|
\consists "Ambitus_engraver"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|