-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReportCS
More file actions
29 lines (21 loc) · 772 Bytes
/
ReportCS
File metadata and controls
29 lines (21 loc) · 772 Bytes
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
\documentclass[]{report} % list options between brackets
\usepackage{} % list packages between braces
% type user-defined commands here
\begin{document}
\title{\TeX\ and \LaTeX} % type title between braces
\author{Tom Scavo} % type author(s) between braces
\date{October 27, 1995} % type date between braces
\maketitle
\begin{abstract}
A brief introduction to \TeX\ and \LaTeX
\end{abstract}
\chapter{\TeX} % chapter 1
\section{Introduction} % section 1.1
\subsection{History} % subsection 1.1.1
\chapter{\LaTeX} % chapter 2
\section{Introduction} % section 2.1
\subsection{Usage} % subsection 2.1.1
\begin{thebibliography}{9}
% type bibliography here
\end{thebibliography}
\end{document}