mirror of
https://github.com/velocitatem/PHANTOM.git
synced 2026-07-15 17:43:36 +00:00
29 lines
763 B
EmacsLisp
29 lines
763 B
EmacsLisp
;; -*- lexical-binding: t; -*-
|
|
|
|
(TeX-add-style-hook
|
|
"main"
|
|
(lambda ()
|
|
(setq TeX-command-extra-options
|
|
"-file-line-error -interaction=nonstopmode")
|
|
(TeX-add-to-alist 'LaTeX-provided-class-options
|
|
'(("report" "12pt") ("acmart" "sigconf" "nonacm" "natbib=false" "manuscript") ("article" "12pt" "letterpaper")))
|
|
(TeX-run-style-hooks
|
|
"latex2e"
|
|
"preamble"
|
|
"chapters/01-intro"
|
|
"chapters/02-literature-review"
|
|
"chapters/03-methodology"
|
|
"chapters/04-results"
|
|
"chapters/05-discussion"
|
|
"chapters/06-conclusion"
|
|
"chapters/acknowledgements"
|
|
"article"
|
|
"art12")
|
|
(LaTeX-add-labels
|
|
"app:compute_budget"
|
|
"tab:compute_derivation"
|
|
"app:kl_zeros"
|
|
"app:revelation_log"))
|
|
:latex)
|
|
|