comparison final_pre/auto/midterm.el @ 7:28f900230c26

add final_pre
author ryokka
date Mon, 19 Feb 2018 23:32:24 +0900
parents
children
comparison
equal deleted inserted replaced
6:d927f6b3d2b3 7:28f900230c26
1 (TeX-add-style-hook
2 "midterm"
3 (lambda ()
4 (TeX-add-to-alist 'LaTeX-provided-class-options
5 '(("jarticle" "twocolumn" "twoside" "9.5pt")))
6 (TeX-add-to-alist 'LaTeX-provided-package-options
7 '(("graphicx" "dvipdfmx")))
8 (add-to-list 'LaTeX-verbatim-environments-local "lstlisting")
9 (add-to-list 'LaTeX-verbatim-macros-with-braces-local "path")
10 (add-to-list 'LaTeX-verbatim-macros-with-braces-local "url")
11 (add-to-list 'LaTeX-verbatim-macros-with-braces-local "lstinline")
12 (add-to-list 'LaTeX-verbatim-macros-with-delims-local "path")
13 (add-to-list 'LaTeX-verbatim-macros-with-delims-local "url")
14 (add-to-list 'LaTeX-verbatim-macros-with-delims-local "lstinline")
15 (TeX-run-style-hooks
16 "latex2e"
17 "dummy"
18 "jarticle"
19 "jart10"
20 "graphicx"
21 "picins"
22 "fancyhdr"
23 "abstract"
24 "url"
25 "bussproofs"
26 "listings"
27 "jlisting")
28 (LaTeX-add-bibliographies
29 "reference"))
30 :latex)
31