A LaTeX style for writing an SAE Technical Paper
Background
I hope the style will be useful for many authors, especially for those making extensive use of mathematical formula.
Creating the style
The sae document class inherits all from the article class. However, the definition of the title page within the article class was not suitable. So I had a look at the article.cls file to find out how I should write this. The problem was finally solved by creating saveboxes. This makes it possible to add as many author/affiliation pairs as wished. With each \AddAuthor command the old savebox is redefined and the new two lines are appended. The \SAECopyright command takes a year as the only argument, the surrounding text is created by the style.
System Requirements
Download
Changes
| 2002-07-22 | The class now produces one-column output by default. To obtain the two-column output required by SAE, use the new option final. For double-spaced output, use the new option draft. |
| 2000-06-28 | Cleaned up the code. Now using geometry package instead of \setlength{}{} commands. New pdftex option, which is forwarded to the article class and the geometry package. |
| 2000-08-28 | Due to numerous questions I received during the past weeks, I decided to add a few instructions on how to obtain the geometry.sty file which is obviously missing in some TeX-distributions. |
Usage
The class is compatible with the hyperref package and pdflatex and can be used to produce PDF files suitable for electronic publication and printing. There are no features in sae.cls which could prevent the usage together with other packages. I recommend the graphicx, natbib and tabularx styles to include figures, handle citations and build tables, respectively.
Tips and Tricks
- While working on the paper, it can be convenient to
have it formatted one-column and with double line
spacing. This can be accomplished by inserting
\onecolumn
just in front of \begin{document}.
\renewcommand{\baselinestretch}{2}\small\normalsize
- The insertion of the commands
\widowpenalty=10000
in the beginning of the document suppresses widows and orphans (single lines on the top or bottom of the page).
\clubpenalty=10000 - The inclusion of the line
\usepackage[pdftex,pdfpagemode=None,colorlinks=true,urlcolor=black,%
loads the hyperref package with options suitable for generation of a PDF-file containing links. Each \cite{} and \ref{} command triggers the insertion of a link to the corresponding target (image, bibliography item etc.) in the PDF. Useful for online-publication. Requires pdfTeX.
linkcolor=black,citecolor=black,pdfstartview=FitH]{hyperref}