\documentclass[12pt,twoside]{article}		% file "MyDoc.tex"
\usepackage{graphicx}
\usepackage{amssymb}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% PRELIMINARY STUFF
%	default values = 1" margins all around
\setlength{\textwidth}{168mm}
\setlength{\evensidemargin}{-5mm}
\setlength{\oddsidemargin}{-5mm}
\setlength{\textheight}{225mm}
\setlength{\topmargin}{-12mm}
\setlength{\parindent}{0mm}
\setlength{\parskip}{1.0ex}

\title{On Accelerated Dispersion of Reactive Solvents
\thanks{This research was supported by the National Sciense
	Foundation under grant JQX-637292.}}

\author{Jane Q. Doe \\
        Department of Applied Chemistry \\
        University of Colorado \\
        Boulder CO 80309}

\date{6 September 2003}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% BODY OF DOCUMENT
\begin{document}
\maketitle
\tableofcontents		% this is optional

This document showcases some of the important basics
features of \LaTeX.
You should view the text of these ``source files''
(files named with the \verb9.tex9 and \verb9.bib9
suffixes), which showcases some basic features;
how to include other \LaTeX{} files, produce lists,
footnotes\footnote{This is an example}
and references.
Of particular importance are examples of
mathematical formulae and included diagrams.

\input sect1.tex

\input sect2.tex

\input sect3.tex

\appendix
\input appendix.tex	% file with the contents of appendix A

\bibliographystyle{plain}
\bibliography{biblio}	% use data in file "biblio.bib"

\end{document}

