Code: Select all
\documentclass[]{report}
%Packages
\usepackage{graphicx}
\begin{document}
%Title page
\title{SEM}
\author{xxx}
\date{\today}
\maketitle
%Content
\section{SEM}
\subsection{Theory}
\subsubsection{What is SEM?}
\begin{figure}
\begin{center}
\includegraphics[keepaspectratio=true, width=8cm] {SEMold}
\caption{"Stereoscan" Mk 1 prototype (Stewart and Snelling 1965) \cite{Oatley}}
\end{center}
\end{figure}
\section{Practical}
\cite{UniofG}
\subsection{Adjustments and focusing}
\subsubsection{Focus}
\subsubsection{Beam allignment}
\subsubsection{Astigmatism}
\subsection{Artefacts}
\subsubsection{Charging}
\subsubsection{Beam damage}
\subsubsection{Contamination}
\nocite{*}
%Bibliography
\bibliography{Bibliography}{}
\bibliographystyle{plain}
\end{document}
Code: Select all
%% This BibTeX bibliography file was created using BibDesk.
%% http://bibdesk.sourceforge.net/
%% Created for xxx at 2013-02-07 11:44:07 +0100
%% Saved with string encoding Unicode (UTF-8)
@article{Oatley,
Author = {C. W. Oatley},
Journal = {J. Appl. Phys.},
Number = {1},
Title = {The early history of the scanning electron microscope},
Volume = {53},
Year = {1982}}
@url{UniofG,
Author = {http://www.gla.ac.uk/},
Date-Modified = {2013-02-07 09:59:26 +0000},
Institution = {University of Glasgow},
Title = {SEM interaction volume},
Year = {2012}}
Thank you in advance.