# -*- mode: org; eval: (visual-line-mode); -*- # * Options #+OPTIONS: tags:nil toc:nil title:nil p:t ** LaTeX LaTeX is the premier free document preparation system. *** Document class & options We choose the article class. It is generic, nice and simple. #+LATEX_CLASS: article #+LATEX_CLASS_options: [a5paper] *** Geometry Thanks to the geometry package, we can set the margin widths on all sides. #+LATEX_HEADER: \usepackage[ #+LATEX_HEADER: left = 0.5in , #+LATEX_HEADER: right = 0.5in , #+LATEX_HEADER: top = 0.8in , #+LATEX_HEADER: bottom = 1.6in ,]{geometry} Our main setupfile must be called here, so that the =geometry= definition above takes precedence. However, the footer definition comes afterwards, in order to override the definition contained in =Safran-doc.setup=. #+SETUPFILE: "L:/org/templates/Safran-doc.setup" #+LATEX_HEADER_EXTRA: \fancyfoot[C]{\hrulefill\\[8pt] #+LATEX_HEADER_EXTRA: \color{Gray} Page~\thepage/\pageref*{LastPage}\\[8pt] #+LATEX_HEADER_EXTRA: \footnotesize \texttt{\textbf{MAG Aerospace Industries, LLC---Proprietary and Confidential.}}}