James Bray's Latex Help - Master Latex File
Latex > Chapter Master Latex File

The Chapter Master Latex File

%--------------------------------------------------------
% FILE:    chapter1.tex
% AUTHOR:  James Bray
% DATE:    02.07.2001
%
% Master latex file for chapter1/introduction
%
%--------------------------------------------------------

% Define style of document
\documentclass[a4,12pt,english,fleqn]{report}

% NATBIB
\usepackage{/home/bsm/james/tex/natbib}
\bibpunct{(}{)}{;}{a}{,}{,}

% Define margins of document
\sloppy
\usepackage{geometry}
\geometry{verbose,a4paper,tmargin=20mm,bmargin=20mm,lmargin=30mm,rmargin=20mm}

% Set overall spacing
\usepackage{setspace}
\onehalfspacing   

% Include packages for manipulating figures/tables
\usepackage{epsfig} 

% Different font size in captions
\usepackage{/home/bsm/james/tex/ccaption}
\captionnamefont{\bf \footnotesize}
\captiontitlefont{\footnotesize}
\captionwidth{130mm}
\changecaptionwidth

% Start of document
\begin{document}

% Bibliography style
\bibliographystyle{/home/bsm/james/tex/jmb}

% Define aliases
\newcommand{\ie}{i.e.~\/}
\newcommand{\eg}{e.g.~\/}
\newcommand{\degree}{$^{\circ }$}
\newcommand{\mcol}{\multicolumn}
\newcommand{\pbox}{\parbox}
\newcommand{\rright}{\raggedright}
\newcommand{\rleft}{\raggedleft}
\newcommand{\dg}{$^{\dagger}$}
\newcommand{\al}{$\alpha$}
\newcommand{\be}{$\beta$}
\newcommand{\de}{$\delta$}
\newcommand{\ga}{$\gamma$}

% Counter commands
\setcounter{page}{1}
\setcounter{chapter}{0}
\setcounter{secnumdepth}{4}
\setcounter{tocdepth}{3}

% Page Headings
\pagestyle{myheadings}

% BODY OF TEXT - Include the following files in main document
\normalsize

\include{chapter1_body}

% BIBTEX
\bibliography{/home/bsm/james/thesis/references/thesis}

\end{document}