]> git.donarmstrong.com Git - lilypond.git/blob - ly/paper-defaults-init.ly
Run grand-replace (issue 3765)
[lilypond.git] / ly / paper-defaults-init.ly
1 %%%% This file is part of LilyPond, the GNU music typesetter.
2 %%%%
3 %%%% Copyright (C) 2004--2014 Han-Wen Nienhuys <hanwen@xs4all.nl>
4 %%%%                          Jan Nieuwenhuizen <janneke@gnu.org>
5 %%%%                          Neil Puttock <n.puttock@gmail.com>
6 %%%%
7 %%%% LilyPond is free software: you can redistribute it and/or modify
8 %%%% it under the terms of the GNU General Public License as published by
9 %%%% the Free Software Foundation, either version 3 of the License, or
10 %%%% (at your option) any later version.
11 %%%%
12 %%%% LilyPond is distributed in the hope that it will be useful,
13 %%%% but WITHOUT ANY WARRANTY; without even the implied warranty of
14 %%%% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 %%%% GNU General Public License for more details.
16 %%%%
17 %%%% You should have received a copy of the GNU General Public License
18 %%%% along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
19
20 \version "2.16.0"
21
22 \paper {
23   #(set-paper-dimension-variables (current-module))
24
25   %%% WARNING
26   %%%
27   %%% If you add any new dimensions, don't forget to update
28   %%% the dimension-variables variable.  See paper.scm.
29
30   unit = #(ly:unit)
31   mm = 1.0
32   in = 25.4
33   pt = #(/ in 72.27)
34   cm = #(* 10 mm)
35
36   % 20pt staff, 5 pt = 1.75 mm
37   output-scale = #1.7573
38
39   %% ugh. hard coded?
40   #(layout-set-absolute-staff-size (* 20.0 pt))
41
42
43   %% Automatic scaling to paper size:
44   %%
45   %% Margins, indents, and offsets marked "scaled to paper size"
46   %% below apply to the default paper format given by
47   %% (ly:get-option 'paper-size) and are scaled accordingly for
48   %% other formats.
49
50
51   %%
52   %% Fixed vertical spacing
53   %%
54   top-margin-default = 5\mm     % scaled to paper-size
55   bottom-margin-default = 6\mm  % scaled to paper-size
56   ragged-bottom = ##f
57   ragged-last-bottom = ##t  % best for shorter scores
58
59   %%
60   %% Flexible vertical spacing
61   %%
62   %% Note: these are not scaled; they are in staff-spaces.
63   system-system-spacing = #'((basic-distance . 12) (minimum-distance . 8) (padding . 1) (stretchability . 60))
64   score-system-spacing = #'((basic-distance . 14) (minimum-distance . 8) (padding . 1) (stretchability . 120))
65   markup-system-spacing = #'((basic-distance . 5) (padding . 0.5) (stretchability . 30))
66   score-markup-spacing = #'((basic-distance . 12) (padding . 0.5) (stretchability . 60))
67   markup-markup-spacing = #'((basic-distance . 1) (padding . 0.5))
68   top-system-spacing = #'((basic-distance . 1) (minimum-distance . 0) (padding . 1))
69   top-markup-spacing = #'((basic-distance . 0) (minimum-distance . 0) (padding . 1))
70   last-bottom-spacing = #'((basic-distance . 1) (minimum-distance . 0) (padding . 1) (stretchability . 30))
71
72
73   %%
74   %% Widths and (horizontal) margins
75   %%
76   left-margin-default = 10\mm   % scaled to paper-size
77   right-margin-default = 10\mm  % scaled to paper-size
78   check-consistency = ##t
79
80
81   %%
82   %% Two-sided mode
83   %%
84   two-sided = ##f
85   inner-margin-default = 10\mm   % scaled to paper-size
86   outer-margin-default = 20\mm   % scaled to paper-size
87   binding-offset-default = 0\mm  % scaled to paper-size
88
89
90   %%
91   %% Indents
92   %%
93   indent-default = 15\mm       % scaled to paper-size
94   short-indent-default = 0\mm  % scaled to paper-size
95
96
97   %%
98   %% Page breaking
99   %%
100   blank-after-score-page-penalty = 2
101   blank-last-page-penalty = 0
102   blank-page-penalty = 5
103   page-breaking = #ly:optimal-breaking
104
105
106   %%
107   %% Footnotes
108   %%
109   footnote-separator-markup = \markup \fill-line { \override #'(span-factor . 1/2) \draw-hline }
110   footnote-padding = 0.5\mm
111   footnote-footer-padding = 0.5\mm
112   footnote-number-raise = 0.5\mm
113   footnote-numbering-function = #numbered-footnotes
114   reset-footnotes-on-new-page = ##t
115
116   %%
117   %% Page numbering
118   %%
119   first-page-number = #1
120   print-first-page-number = ##f
121   print-page-number = ##t
122
123   %%
124   %% Headers, footers, and titles
125   %%
126   #(define make-header (marked-up-headfoot 'oddHeaderMarkup 'evenHeaderMarkup))
127   #(define make-footer (marked-up-headfoot 'oddFooterMarkup 'evenFooterMarkup))
128
129   #(define-public book-title (marked-up-title 'bookTitleMarkup))
130   #(define-public score-title (marked-up-title 'scoreTitleMarkup))
131   #(define-public score-title-properties
132      '((is-title . #t)
133        (is-book-title . #f)))
134   #(define-public book-title-properties
135      '((is-title . #t)
136        (is-book-title . #t)))
137
138   \include "titling-init.ly"
139
140
141   %%
142   %% Fonts
143   %%
144   #(define font-defaults
145     '((font-family . feta) (font-encoding . fetaMusic)))
146
147   % `latin1' is a dummy value for Pango fonts
148   #(define text-font-defaults
149      `((font-encoding . latin1)
150        (baseline-skip . 3)
151        (replacement-alist . ,default-string-replacement-alist)
152        (word-space . 0.6)))
153
154   \include "text-replacements.ly"
155
156 }