View raw

1 # -*- mode: org; eval: (visual-line-mode); -*- # 2 3 4 * Options 5 6 #+OPTIONS: tags:nil toc:nil title:nil p:t 7 8 ** LaTeX 9 10 LaTeX is the premier free document preparation system. 11 12 13 *** Document class & options 14 15 We choose the article class. It is generic, nice and simple. 16 17 #+LATEX_CLASS: article 18 #+LATEX_CLASS_options: [a5paper] 19 20 21 *** Geometry 22 23 Thanks to the geometry package, we can set the margin widths on all 24 sides. 25 26 #+LATEX_HEADER: \usepackage[ 27 #+LATEX_HEADER: left = 0.5in , 28 #+LATEX_HEADER: right = 0.5in , 29 #+LATEX_HEADER: top = 0.8in , 30 #+LATEX_HEADER: bottom = 1.6in ,]{geometry} 31 32 Our main setupfile must be called here, so that the =geometry= 33 definition above takes precedence. However, the footer definition 34 comes afterwards, in order to override the definition contained in 35 =Safran-doc.setup=. 36 #+SETUPFILE: "L:/org/templates/Safran-doc.setup" 37 38 #+LATEX_HEADER_EXTRA: \fancyfoot[C]{\hrulefill\\[8pt] 39 #+LATEX_HEADER_EXTRA: \color{Gray} Page~\thepage/\pageref*{LastPage}\\[8pt] 40 #+LATEX_HEADER_EXTRA: \footnotesize \texttt{\textbf{MAG Aerospace Industries, LLC---Proprietary and Confidential.}}} 41