[plt-scheme] Where do slatex users usually start?
On 5/13/07, Grant Rettke <grettke at acm.org> wrote:
> Where should folks with no experience with LaTeX start when it comes
> to using slatex?
I learned Latex from one of the many online tutorials. You'll
probably do better with the book you have, though note you can answer
most questions with a bit of Googling.
Below is the template I use for all my latex documents:
\documentclass{article}
\usepackage{graphicx}
\usepackage[numbers]{natbib}
\usepackage{times}
\usepackage{url}
\usepackage[]{alg}
\usepackage{amsfonts}
\begin{document}
\title{}
\author{}
\maketitle
\bibliographystyle{plainnat}
\bibliography{papers}
\end{document}
HTH,
Noel