forked from UoMResearchIT/latex-thesis-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfiguresandtables.tex
29 lines (26 loc) · 982 Bytes
/
figuresandtables.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
\chapter{Figures and Tables}
\section{Figures}
Figures are included using the code below. Remember there are environments for sideways figures and subfigures.
\begin{figure}[tbp]
\centering
\includegraphics[width=1.00\textwidth]{example-image-a}
\caption[Example image.]{An example images that uses the MWE package functions to call a dummy image.}
\label{fig:editapic}
\end{figure}
\section{Tables}
Tables are complicated in \LaTeX. Table \ref{tab:itraxsetupsummary} is a simple example.
\begin{table}[tbp]
\centering
\begin{tabular}{lr}
\hline
Parameter & Setting \\ \hline
Tube & Mo \\
Voltage & 30kV \\
Current & 30mA \\
Exposure time & 30s \\
Step size & 400$\mu$m \\
\hline
\end{tabular}
\caption[Summary of parameters used in Itrax XRF data aquisition.]{Summary of parameters used in Itrax XRF data aquisition.}
\label{tab:itraxsetupsummary}
\end{table}