\documentclass[10pt]{article}

\usepackage[]{epsfig} % For including PostScript graphics.
\usepackage[]{float} % For placement of figures.

\begin{document}

\title{{\Huge \bf Example article}}
\author{Fredrik~Lingvall}
\maketitle

\pagenumbering{roman}

% Abstract
\begin{abstract}

Here\ldots

\end{abstract}
 

\tableofcontents
\listoffigures

\pagenumbering{arabic}

\section{}

\subsection{}

\subsubsection{}

\subsubsection{An Equation}

% A Formula without equation numbers.
\begin{displaymath}
  \Phi = \int^{1}_{0} \gamma(t) \theta(t)\frac{1}{\sqrt{{x(t)^3}}}dt
\end{displaymath}
 

% A Formula with equation numbers.
\begin{equation}
  \Phi = \int^{1}_{0} \gamma(t) \theta(t)\frac{1}{\sqrt{{x(t)^3}}}dt
  \label{eq:test}
\end{equation}

% Make a reference.
In equation (\ref{eq:test}) is the\ldots

\subsubsection{Including PostScript Graphics}

\begin{figure}[htbp] % [H] if you use the float package
  \begin{center}
   \scalebox{.5}{ % Scale the figure 50 percent.
       \epsfig{file=test.eps} }
 
\end{center}
% Figure text (caption).
\caption{\emph{Example eps-graphics.}\label{fig:test}}
\end{figure}

% Make a reference.
The pictures in Figure~\ref{fig:test} are\ldots

\end{document}


webmaster@signal.uu.se | Updated Oct. 17 1997 (FL) | www.signal.uu.se/Info/english_article.html