76 lines
2.0 KiB
EmacsLisp
76 lines
2.0 KiB
EmacsLisp
(TeX-add-style-hook
|
|
"article"
|
|
(lambda ()
|
|
(TeX-add-to-alist 'LaTeX-provided-class-options
|
|
'(("apa7" "floatsintext" "mask" "man")))
|
|
(TeX-add-to-alist 'LaTeX-provided-package-options
|
|
'(("inputenc" "utf8") ("fontenc" "T1") ("babel" "american") ("biblatex" "natbib=true" "style=apa" "sortcites=true" "backend=biber")))
|
|
(add-to-list 'LaTeX-verbatim-environments-local "lstlisting")
|
|
(add-to-list 'LaTeX-verbatim-macros-with-braces-local "url")
|
|
(add-to-list 'LaTeX-verbatim-macros-with-braces-local "path")
|
|
(add-to-list 'LaTeX-verbatim-macros-with-braces-local "lstinline")
|
|
(add-to-list 'LaTeX-verbatim-macros-with-delims-local "url")
|
|
(add-to-list 'LaTeX-verbatim-macros-with-delims-local "path")
|
|
(add-to-list 'LaTeX-verbatim-macros-with-delims-local "lstinline")
|
|
(TeX-run-style-hooks
|
|
"latex2e"
|
|
"bayesnets"
|
|
"apa7"
|
|
"apa710"
|
|
"epstopdf"
|
|
"subcaption"
|
|
"tikz"
|
|
"tabularx"
|
|
"inputenc"
|
|
"wrapfig"
|
|
"fontenc"
|
|
"textcomp"
|
|
"listings"
|
|
"xcolor"
|
|
"graphicx"
|
|
"enumerate"
|
|
"amsmath"
|
|
"babel"
|
|
"csquotes"
|
|
"biblatex")
|
|
(TeX-add-symbols
|
|
'("TODO" 1)
|
|
"citepos"
|
|
"citespos")
|
|
(LaTeX-add-labels
|
|
"eq:covariate.reg.general"
|
|
"eq:covariate.logisticreg.w"
|
|
"eq:depvar.general"
|
|
"eq:depvar.w"
|
|
"mod:measerr.ols"
|
|
"mod:true.ols"
|
|
"mod:measerr.logit"
|
|
"fig:sim1a.x"
|
|
"fig:sim1b.x"
|
|
"fig:sim2a.x"
|
|
"fig:sim2b.x"
|
|
"appendix:lit.review"
|
|
"fig:FigureA1"
|
|
"tab:TableA1"
|
|
"appendix:other.methods"
|
|
"appendix:derivation"
|
|
"eq:mle.covariate.chainrule.1"
|
|
"eq:mle.covariate.chainrule.2"
|
|
"eq:mle.covariate.chainrule.3"
|
|
"eq:mle.covariate.chainrule.4"
|
|
"appendix:misclassificationmodels"
|
|
"appendix:main.sim.plots"
|
|
"fig:sim1b.z"
|
|
"appendix:sim1.profile")
|
|
(LaTeX-add-bibliographies
|
|
"Bibliography")
|
|
(LaTeX-add-listings-lstdefinestyles
|
|
"mystyle")
|
|
(LaTeX-add-xcolor-definecolors
|
|
"codegreen"
|
|
"codegray"
|
|
"codepurple"
|
|
"backcolour"))
|
|
:latex)
|
|
|