-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexgal_roadmap.tex
158 lines (120 loc) · 4.37 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
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
157
% ======================================================================
%+
% 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}
%% \begin{center}
%% {\bf Version 0.1\\
%%
%% \vspace*{\stretch{0.2}}
%%
%% October 31, 2012}
%% \end{center}
%%
%% %\vspace*{\stretch{2.5}}
%%
%% Prepared by the LSST Dark Energy Science Collaboration\\
%\vspace*{\stretch{0.15}}
%{\Large with contributions from the LSST Project. }\\
%\vspace*{\stretch{1}}
%{\itshape Affiliations }\\
%\vspace*{\stretch{1}}
% \begin{minipage}{110mm}
% \begin{center}
% Large Synoptic Survey Telescope \\
% Science Book, Version 2.0\\
% November 2009\\
% \end{center}
% \end{minipage}
%% \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{dark_matter/dark_matter}
\include{galaxies/galaxies}
\include{sf_bh_feedback/sf_bh_feedback}
\include{analysis/analysis}
\include{simulations/simulations}
\include{workplan/workplan}
%\include{matrix/matrix}
% ----------------------------------------------------------------------------
\bibliographystyle{SciBook}
\bibliography{references.bib}
%\bibliography{references.bib,introduction/references,simulations/cosim/cosim,analysis/weak-lensing/wl,supernovae/references,analysis/large-scale-structure/lss,analysis/large-scale-structure/extra_lss,analysis/strong-lensing/references,analysis/clusters/clusters,analysis/clusters/clusters_extra,analysis/photoz/photoz,analysis/theory/references,analysis/theory/references_extra,analysis/theory/references_extra_p2.bib,workplan/photoz/references}
% More possible bib files:
% analysis/supernovae/references,%
% analysis/large-scale-structure/references,%
% analysis/photoz/references%
% ----------------------------------------------------------------------------
% \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}
% ============================================================================