44 lines
952 B
TeX
44 lines
952 B
TeX
\documentclass[../HWThesis.tex]{subfiles}
|
|
\begin{document}
|
|
\begin{refsection}
|
|
\chapter{Background}
|
|
\label{ch:background}
|
|
|
|
|
|
\begin{figure}[H]
|
|
\begin{center}
|
|
\includegraphics [width=12cm]{Background/pic.png}
|
|
\caption{Figure Caption.}
|
|
\label{fig:label}
|
|
\end{center}
|
|
\end{figure}
|
|
|
|
Some default citations: \cite{gum, ghc-smp}
|
|
|
|
\subsection{Subsection}
|
|
|
|
\begin{table}[H]
|
|
\begin{center}
|
|
\begin{tabular}{c c c c} % centered columns (4 columns)
|
|
\hline\hline %inserts double horizontal lines
|
|
Case & Method\#1 & Method\#2 & Method\#3 \\ [0.5ex] % inserts table
|
|
%heading
|
|
\hline % inserts single horizontal line
|
|
1 & 50 & 837 & 970 \\ % inserting body of the table
|
|
2 & 47 & 877 & 230 \\
|
|
3 & 31 & 25 & 415 \\
|
|
4 & 35 & 144 & 2356 \\
|
|
5 & 45 & 300 & 556 \\ [1ex] % [1ex] adds vertical space
|
|
\hline %inserts single line
|
|
\end{tabular}\caption{Table Caption}
|
|
\label{tab:lable}
|
|
\end{center}
|
|
\end{table}
|
|
|
|
|
|
\subsubsection{Subsubsection}
|
|
|
|
|
|
\end{refsection}
|
|
\end{document}
|