X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=ly%2Fpaper-defaults-init.ly;h=ef7419312271c1de3f975c10be5d375c6889ab56;hb=9e781b7dc83b60a543ce218aa1a5f139f74c760f;hp=f8460ca12b775bce946435417cf41f821257e6c3;hpb=60fc32ec59fd97456218332612b87b821968da84;p=lilypond.git diff --git a/ly/paper-defaults-init.ly b/ly/paper-defaults-init.ly index f8460ca12b..ef74193122 100644 --- a/ly/paper-defaults-init.ly +++ b/ly/paper-defaults-init.ly @@ -1,6 +1,6 @@ %%%% This file is part of LilyPond, the GNU music typesetter. %%%% -%%%% Copyright (C) 2004--2010 Han-Wen Nienhuys +%%%% Copyright (C) 2004--2014 Han-Wen Nienhuys %%%% Jan Nieuwenhuizen %%%% Neil Puttock %%%% @@ -17,9 +17,11 @@ %%%% You should have received a copy of the GNU General Public License %%%% along with LilyPond. If not, see . -\version "2.12.0" +\version "2.16.0" \paper { + #(set-paper-dimension-variables (current-module)) + %%% WARNING %%% %%% If you add any new dimensions, don't forget to update @@ -31,96 +33,124 @@ pt = #(/ in 72.27) cm = #(* 10 mm) - print-page-number = ##t + % 20pt staff, 5 pt = 1.75 mm + output-scale = #1.7573 + %% ugh. hard coded? + #(layout-set-absolute-staff-size (* 20.0 pt)) + + + %% Automatic scaling to paper size: %% - %% 20pt staff, 5 pt = 1.75 mm - %% + %% Margins, indents, and offsets marked "scaled to paper size" + %% below apply to the default paper format given by + %% (ly:get-option 'paper-size) and are scaled accordingly for + %% other formats. - output-scale = #1.7573 - #(define-public book-title (marked-up-title 'bookTitleMarkup)) - #(define-public score-title (marked-up-title 'scoreTitleMarkup)) + %% + %% Fixed vertical spacing + %% + top-margin-default = 5\mm % scaled to paper-size + bottom-margin-default = 6\mm % scaled to paper-size + ragged-bottom = ##f + ragged-last-bottom = ##t % best for shorter scores %% - %% ugh. hard coded? + %% Flexible vertical spacing %% + %% Note: these are not scaled; they are in staff-spaces. + system-system-spacing = #'((basic-distance . 12) (minimum-distance . 8) (padding . 1) (stretchability . 60)) + score-system-spacing = #'((basic-distance . 14) (minimum-distance . 8) (padding . 1) (stretchability . 120)) + markup-system-spacing = #'((basic-distance . 5) (padding . 0.5) (stretchability . 30)) + score-markup-spacing = #'((basic-distance . 12) (padding . 0.5) (stretchability . 60)) + markup-markup-spacing = #'((basic-distance . 1) (padding . 0.5)) + top-system-spacing = #'((basic-distance . 1) (minimum-distance . 0) (padding . 1)) + top-markup-spacing = #'((basic-distance . 0) (minimum-distance . 0) (padding . 1)) + last-bottom-spacing = #'((basic-distance . 1) (minimum-distance . 0) (padding . 1) (stretchability . 30)) - #(layout-set-absolute-staff-size (* 20.0 pt)) + %% + %% Widths and (horizontal) margins + %% + left-margin-default = 10\mm % scaled to paper-size + right-margin-default = 10\mm % scaled to paper-size + check-consistency = ##t - #(define-public score-title-properties - '((is-title . #t) - (is-book-title . #f))) - #(define-public book-title-properties - '((is-title . #t) - (is-book-title . #t))) - %% Note: these are not scaled; they are in staff-spaces. - system-system-spacing = #'((space . 12) (minimum-distance . 8) (padding . 1)) - score-system-spacing = #'((space . 14) (minimum-distance . 8) (padding . 1)) - markup-system-spacing = #'((space . 5) (padding . 0.5)) - score-markup-spacing = #'((space . 12) (padding . 0.5)) - markup-markup-spacing = #'((space . 1) (padding . 0.5)) - top-system-spacing = #'((space . 1) (padding . 1) (minimum-distance . 0)) - top-markup-spacing = #'((space . 0) (padding . 1) (minimum-distance . 0)) - last-bottom-spacing = #'((space . 1) (padding . 1) (minimum-distance . 0) (stretchability . 5)) + %% + %% Two-sided mode + %% + two-sided = ##f + inner-margin-default = 10\mm % scaled to paper-size + outer-margin-default = 20\mm % scaled to paper-size + binding-offset-default = 0\mm % scaled to paper-size - ragged-bottom = ##f %% - %% looks best for shorter scores. + %% Indents %% - ragged-last-bottom = ##t + indent-default = 15\mm % scaled to paper-size + short-indent-default = 0\mm % scaled to paper-size + %% - %% settings for the page breaker + %% Page breaking %% - blank-last-page-force = 0 - blank-after-score-page-force = 2 - blank-page-force = 5 + blank-after-score-page-penalty = 2 + blank-last-page-penalty = 0 + blank-page-penalty = 5 + page-breaking = #ly:optimal-breaking - #(define font-defaults - '((font-family . feta) (font-encoding . fetaMusic))) %% - %% the font encoding `latin1' is a dummy value for Pango fonts + %% Footnotes %% - #(define text-font-defaults - `((font-encoding . latin1) - (baseline-skip . 3) - (word-space . 0.6))) + footnote-separator-markup = \markup \fill-line { \override #'(span-factor . 1/2) \draw-hline } + footnote-padding = 0.5\mm + footnote-footer-padding = 0.5\mm + footnote-number-raise = 0.5\mm + footnote-numbering-function = #numbered-footnotes + reset-footnotes-on-new-page = ##t - #(define page-breaking ly:optimal-breaking) + %% + %% Page numbering + %% + first-page-number = #1 + print-first-page-number = ##f + print-page-number = ##t + %% + %% Headers, footers, and titles + %% #(define make-header (marked-up-headfoot 'oddHeaderMarkup 'evenHeaderMarkup)) #(define make-footer (marked-up-headfoot 'oddFooterMarkup 'evenFooterMarkup)) - #(set-paper-dimension-variables (current-module)) - \include "titling-init.ly" - - check-consistency = ##t - two-sided = ##f - - % These margins apply to the default paper format given by (ly:get-option 'paper-size) - % and are scaled accordingly for other formats + #(define-public book-title (marked-up-title 'bookTitleMarkup)) + #(define-public score-title (marked-up-title 'scoreTitleMarkup)) + #(define-public score-title-properties + '((is-title . #t) + (is-book-title . #f))) + #(define-public book-title-properties + '((is-title . #t) + (is-book-title . #t))) - top-margin-default = 5 \mm - bottom-margin-default = 6 \mm + \include "titling-init.ly" - left-margin-default = 10 \mm - right-margin-default = 10 \mm - inner-margin-default = 10 \mm - outer-margin-default = 20 \mm - binding-offset-default = 0 \mm + %% + %% Fonts + %% + #(define font-defaults + '((font-family . feta) (font-encoding . fetaMusic))) - head-separation-default = 4 \mm - foot-separation-default = 4 \mm + % `latin1' is a dummy value for Pango fonts + #(define text-font-defaults + `((font-encoding . latin1) + (baseline-skip . 3) + (replacement-alist . ,default-string-replacement-alist) + (word-space . 0.6))) - indent-default = 15 \mm - short-indent-default = 0 \mm + \include "text-replacements.ly" - first-page-number = #1 - print-first-page-number = ##f }