README.md 1007 B

LaTeX ISO Document Classes

A wrapper to LaTeX's article and report classes which change the default options to a4paper and 12pt.

It should accept all options normally accepted by the original document classes. So, for example, you can restore the behaviour of article using \documentclass[10pt, letterpaper]{iso-article}.

Giving multiple font or paper sizes will generate a warning. In this case, the option which is defined first will be used. The other conflicting options will be ignored.

Installation

On Unix:

ln -sv /path/to/latex-iso-classes/iso-* ~/texmf/tex/latex/

Sample documents

\documentclass{iso-article}
\usepackage{lipsum}

\begin{document}
\lipsum
\end{document}
\documentclass{iso-report}
\usepackage{lipsum}

\title{Hello World}
\author{Mr Bob Dobalina}
\date{}

\begin{document}
\maketitle
\tableofcontents

\chapter{Introduction}

\lipsum

\chapter{Body}

\lipsum

\chapter{Conclusion}

\lipsum
\end{document}