Initial Commit.
This commit is contained in:
commit
5902a5fd56
|
|
@ -0,0 +1,13 @@
|
|||
;;; Directory Local Variables
|
||||
;;; For more information see (info "(emacs) Directory Variables")
|
||||
|
||||
((org-mode . ((org-use-property-inheritance . t)
|
||||
(eval . (progn
|
||||
(require 'ox-latex)
|
||||
(setq-local
|
||||
org-latex-classes
|
||||
'(("chex"
|
||||
"\\documentclass{chex}"
|
||||
("\\chapter{%s}" . "\\chapter*{%s}")
|
||||
("\\section{%s}" . "\\section*{%s}")
|
||||
("\\subsection{%s}" . "\\section*{*s}")))))))))
|
||||
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
|
After Width: | Height: | Size: 83 KiB |
|
|
@ -0,0 +1,18 @@
|
|||
\NeedsTeXFormat{LaTeX2e}
|
||||
\ProvidesClass{chex}[]
|
||||
|
||||
\usepackage{titlepic}
|
||||
\titlepic{\includegraphics[width=250]{Coat-of-Arms-Color.png}}
|
||||
|
||||
\LoadClass[12pt]{report}
|
||||
\usepackage{geometry}[margin=1in]
|
||||
\usepackage{hyperref}
|
||||
\hypersetup{
|
||||
colorlinks=true,
|
||||
linkcolor=magenta,
|
||||
filecolor=magenta,
|
||||
urlcolor=magenta,
|
||||
pdftitle={Chapter Excellence},
|
||||
pdfpagemode=FullScreen,
|
||||
}
|
||||
\setcounter{secnumdepth}{0}
|
||||
Loading…
Reference in New Issue