Wrapper to LaTeX classes, changing default options to 12pt, a4paper
Timothy Rice 78eff12056 Add option to always indent paragraphs even after new sections. | 8 years ago | |
---|---|---|
LICENSE.md | 8 years ago | |
README.md | 8 years ago | |
iso-article.cls | 8 years ago | |
iso-common.clo | 8 years ago | |
iso-report.cls | 8 years ago |
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.
On Unix:
ln -sv /path/to/latex-iso-classes/iso-* ~/texmf/tex/latex/
\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}