Wrapper to LaTeX classes, changing default options to 12pt, a4paper

Timothy Rice 78eff12056 Add option to always indent paragraphs even after new sections. 8 년 전
LICENSE.md e2d88e0c8c Initial commit. 8 년 전
README.md 5a0a231f4a Add basic installation instructions. 8 년 전
iso-article.cls fca290f39e Extract parts of iso-article useful for other ISO classes. 8 년 전
iso-common.clo 78eff12056 Add option to always indent paragraphs even after new sections. 8 년 전
iso-report.cls 4eaa1095ca Add iso-report class. 8 년 전

README.md

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}