-
Notifications
You must be signed in to change notification settings - Fork 0
/
report-sample.tex
97 lines (87 loc) · 2.22 KB
/
report-sample.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
\pdfoutput=1 % ensure pdflatex
\documentclass[10pt]{mathreport}
% passing the option `sans` will result in sans serif
% distribution names
\usepackage{distoperators}
% \usepackage[sans]{distoperators}
% tip: using the `IEEEeqnarray` environment is much nicer
% than the `aligned` environment
\usepackage{IEEEtrantools}
% For ppendices
\usepackage[title]{appendix}
% define proposition environment
\newtheorem{prop}{Proposition}
% we can define any other amsthm environments and
% benefit from the same style
% dummy text
\usepackage{lipsum}
\title{Sample document\thanks{F. Author is Position at Institution X; S. Author is Position at Institution Y.}}
\keywords{keyword 1; phrase 2.} % keywords are optional
\author{First Author and Second Author}
% set running title and authors
\makeatletter
\def\runauthor{F. Author and S. Author}
\def\runtitle{Running title}
\makeatother
\begin{document}
\maketitle
\thispagestyle{empty}
%
\begin{abstract}
\lipsum[11]
\end{abstract}
%
%
\section{Ordinary text}
%
We reference \citet{KullbackLeibler}, before continuing our discussion.
%
\subsection{Sub-sections are in sans serif too}
%
\lipsum[2]
%
\subsubsection{Even sub-sub-sections are taken care of!}
%
\lipsum[3]
%
\paragraph{And paragraphs!}
%
\lipsum[11]
%
\section{Mathematics}
%
We interest ourselves in the variables
%
\begin{IEEEeqnarray}{rl}
X\;&\sim\normal(100, 0.5) \nonumber \\
Y\;&\sim\Cauchy(0, 2.5). \nonumber
\end{IEEEeqnarray}
%
Note how much prettier these look.\footnote{They look good to me}
We have also defined some handy mathematics operators. For example, perhaps the following is true
%
\begin{equation}
\E{X} = \E[x\sim \mathbb{P}_n]{x}?\label{eq:my-eq}
\end{equation}
%
Now let's get serious with our first proposition.
%
\begin{prop}
Equation~\ref{eq:my-eq} is almost always correct under some assumptions.
\end{prop}
If we would rather not prove this, then we can talk instead about \elpdPlain, or even \elpdHatPlain if we're feeling fancy. Other mathematics functions can be found in \texttt{distoperators.sty}.
%
\begin{appendices}
%
\section{An example appendix}
%
\lipsum[4-12]
%
\end{appendices}
%
\subsubsection*{Acknowledgments}
We acknowledge all kinds of things.
%
\bibliography{sample.bib}
%
\end{document}