\documentclass[11pt]{article} % % Template for GFD reports. % % Updated 12/2000. Address all complaints to Jean-Luc Thiffeault, % jeanluc@mailaps.org % % Updated for 2003 (JLT). % % % Packages (do not delete any!) % % This package handles embedded postscript figures. \usepackage{graphicx} % The amsmath and amssymb packages provide some extra commands/fonts. \usepackage{amsmath,amssymb} % The margins: \usepackage[body={6in,8.5in}]{geometry} % LEAVE THESE NEXT TWO LINES IN (used in final version for page numbering). %\usepackage{lastpage,xr} %\externaldocument[pr-]{..//rep_} % The citation format to use. \bibliographystyle{siam} % Add your own packages here, if necessary. % % Definitions % % Define your own commands here, or input them externally (say, mysymbols.tex). %\input{mysymbols} % gradient \newcommand{\grad}{\nabla} % Partial derivative \def\pd{\partial} % Real numbers \def\reals{{\mathbb R}} % 1st partial derivative \newcommand {\pdd}[2]{\frac{\partial #1}{\partial #2}} % 2nd partial derivative \newcommand {\pdTwo}[2]{\frac{\partial^{2} #1}{\partial #2^{2}}} % reference style %\newcommand {\nref}[1]{~(\ref{#1})} \newcommand {\nref}[1]{~\ref{#1}} % unit vector notation \newcommand {\unitv}[1]{\mathbf{\hat{#1}}} % the subscript for the horizontal component \newcommand {\horiz}{_{_{H}}} % the symbol for the velocity \newcommand {\vel}{\mathbf{u}} % the symbol for the horizontal velocity \newcommand {\uh}{\vel\horiz} % the symbol for the vertical unit vector \newcommand {\khat}{\unitv{k}} % the symbol for the unit vector in th y direction \newcommand {\jhat}{\unitv{j}} % the symbol for the unit vector in the direction \hnabla h \newcommand {\nhat}{\unitv{n}} % the symbol for the horizontal nabla \newcommand {\hnabla}{\nabla\!\horiz} % the symbol for the horizontal laplacian \newcommand {\hlap}{\hnabla^{\,2}} % the subscript denoting top \newcommand {\up}{_{_{T}}} % the subscript denoting bottom \newcommand {\down}{_{_{B}}} % degree symbol \newcommand {\degree} {^{\circ}} % Cross product \def\cross{\times} % % Title % \title{My Plan to Overthrow \\the Current World Order} \author{Name O. Fellow} \date{\today} \begin{document} \maketitle % LEAVE THESE NEXT TWO LINES IN (used in final version for page numbering). % They must go right after the \maketitle command. %\setcounter{page}{\pageref{pr-LastPage}} %\addtocounter{page}{1} \section{Introduction} \label{intro} Your text goes here. \begin{equation} \mathbf{F} = m\,\mathbf{a}\,. \label{Newton} \end{equation} Equation~(\ref{Newton}) is Newton's 2nd law of motion. We will discuss it further in Section~\ref{conclusion}. This is an unnumbered equation: \[ E = m\,c^2\,. \] We also have Table~\ref{dumtable} and Figure~\ref{dumfig}. You cite papers and books in this manner~\cite{Charney1962,Pedlosky}. % % Table % \begin{table} \begin{center} \begin{tabular}{lcr} \hline Letter & Number & Greek \\ \hline a & 1.0 & $\alpha$ \\ b & 2.0 & $\beta$ \\ \hline \end{tabular} \end{center} \caption{This is a table.} \label{dumtable} \end{table} % % Figure % \begin{figure} \centerline{\includegraphics[width=\textwidth]{spiral.eps}} \caption{This is a figure.} \label{dumfig} \end{figure} \section{Conclusion} \label{conclusion} We are done. Let's go home and forget this ever happened. % You can add your own bibliography file (say, mybib.bib) here: %\bibliography{gfd,mybib} \bibliography{gfd} \end{document}