/usr/share/lilypond/2.18.2/ly/paper-defaults-init.ly is in lilypond-data 2.18.2-4.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 | %%%% This file is part of LilyPond, the GNU music typesetter.
%%%%
%%%% Copyright (C) 2004--2012 Han-Wen Nienhuys <hanwen@xs4all.nl>
%%%% Jan Nieuwenhuizen <janneke@gnu.org>
%%%% Neil Puttock <n.puttock@gmail.com>
%%%%
%%%% LilyPond is free software: you can redistribute it and/or modify
%%%% it under the terms of the GNU General Public License as published by
%%%% the Free Software Foundation, either version 3 of the License, or
%%%% (at your option) any later version.
%%%%
%%%% LilyPond is distributed in the hope that it will be useful,
%%%% but WITHOUT ANY WARRANTY; without even the implied warranty of
%%%% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
%%%% GNU General Public License for more details.
%%%%
%%%% You should have received a copy of the GNU General Public License
%%%% along with LilyPond. If not, see <http://www.gnu.org/licenses/>.
\version "2.16.0"
\paper {
#(set-paper-dimension-variables (current-module))
%%% WARNING
%%%
%%% If you add any new dimensions, don't forget to update
%%% the dimension-variables variable. See paper.scm.
unit = #(ly:unit)
mm = 1.0
in = 25.4
pt = #(/ in 72.27)
cm = #(* 10 mm)
% 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:
%%
%% 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.
%%
%% 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
%%
%% 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))
%%
%% 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
%%
%% 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
%%
%% Indents
%%
indent-default = 15\mm % scaled to paper-size
short-indent-default = 0\mm % scaled to paper-size
%%
%% Page breaking
%%
blank-after-score-page-penalty = 2
blank-last-page-penalty = 0
blank-page-penalty = 5
page-breaking = #ly:optimal-breaking
%%
%% Footnotes
%%
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
%%
%% 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))
#(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)))
\include "titling-init.ly"
%%
%% Fonts
%%
#(define font-defaults
'((font-family . feta) (font-encoding . fetaMusic)))
% `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)))
\include "text-replacements.ly"
}
|