33 lines
764 B
EmacsLisp
33 lines
764 B
EmacsLisp
;; -*- lexical-binding: t; -*-
|
|
|
|
(TeX-add-style-hook
|
|
"B51MD_Template"
|
|
(lambda ()
|
|
(TeX-add-to-alist 'LaTeX-provided-class-options
|
|
'(("elsarticle" "3p" "11pt")))
|
|
(TeX-add-to-alist 'LaTeX-provided-package-options
|
|
'(("fancyhdr" "") ("graphicx" "") ("amsmath" "") ("amssymb" "") ("babel" "english" "") ("subcaption" "")))
|
|
(add-to-list 'LaTeX-verbatim-macros-with-braces-local "ead")
|
|
(TeX-run-style-hooks
|
|
"latex2e"
|
|
"elsarticle"
|
|
"elsarticle11"
|
|
"fancyhdr"
|
|
"graphicx"
|
|
"amsmath"
|
|
"amssymb"
|
|
"babel"
|
|
"subcaption")
|
|
(LaTeX-add-labels
|
|
"Tab:method"
|
|
"S:Wordcount"
|
|
"eq1"
|
|
"eq2"
|
|
"eq2a"
|
|
"eq2b"
|
|
"exFigure")
|
|
(LaTeX-add-bibliographies
|
|
"Sample_bib"))
|
|
:latex)
|
|
|