-
Notifications
You must be signed in to change notification settings - Fork 4
/
exgal_roadmap.tex
123 lines (89 loc) · 3.17 KB
/
exgal_roadmap.tex
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
% ======================================================================
%+
% NAME:
% desc_white_paper.tex
%
% PURPOSE:
% Master latex file for the LSST desc_white_paper
%
% COMMENTS:
% - Includes Title page, Preface and Introduction, then \includes
% all technical material provided by science collaborations.
% - Use make to process, calls pdflatex
% - checkbook.csh can be used to check that all inputs are present
%
% INPUTS:
% Many and varied, via the \include command for bibliographic reasons
% grep '\\include' desc_white_paper.tex
%
% OPTIONAL INPUTS:
% final option to make final version
%
% OUTPUTS:
% desc_white_paper.pdf
%
% DEPENDENCIES:
% - whitepaper.sty, SciBook.bst
% - komascript package, providing the scrbook.cls
% http://www.ctan.org/tex-archive/macros/latex/contrib/koma-script/
%
% EXAMPLES:
% make produces desc_white_paper.pdf
%
%
%-
% ============================================================================
%% LaTeX2e
\documentclass[11pt,headsepline,cleardoubleempty,twoside,openright]{scrbook}
% 11pt font
% Draw a line under the header
% Don't draw a line or print page numbers when a page is empty
% Pages are two-sided - so margins alternate
% Chapters start on the righthand side of the page
\usepackage{whitepaper}
\hyphenation{zero-point zero-points}
% ============================================================================
\begin{document}
\begin{titlepage}
\begin{center}
\vspace*{20mm}
{\Huge\bfseries\scshape Large Synoptic Survey Telescope}
\linebreak
\linebreak
{\Huge\bfseries\scshape Galaxies, Dark-Matter and Black Holes: Extragalactic Roadmap}
\vspace*{20mm}
\input{authorlist}
%\vspace*{\stretch{2}}i
%Version taken out for published draft
%%% 2012/07/22 - Put in automatic Version Date LatEx for ease of editing
%%% Now the Version and Date of the SVN version used to compile will
%%% be on the front page of the document.
%%% To generate a more formal version one may wish to change the following back to the hardcoded version right below the following line.
\vspace*{5mm}
\input{VersionDate}
\end{center}
\end{titlepage}
\include{abstract}
% ----------------------------------------------------------------------------
\tableofcontents
% ----------------------------------------------------------------------------
% NOTE FROM JAN: The extra white space after each section is due to
% using \Chapter for them all, following the Science Book.
\include{introduction/introduction}
\include{science_background/science_background}
\include{roadmap/roadmap}
\include{task_lists/task_lists}
%\include{matrix/matrix}
% ----------------------------------------------------------------------------
\bibliographystyle{SciBook}
\bibliography{references.bib}
% ----------------------------------------------------------------------------
% \appendix
% \setboolean{appendix}{true}
% \renewcommand\thechapter{\Alph{chapter}}
% \renewcommand{\chaptermark}[1]{\markboth{Appendix \thechapter: #1}{}}
% \renewcommand{\sectionmark}[1]{\markright{\thesection\ #1}{}}
% Appendix content:
%\include{stuff}
\end{document}
% ============================================================================