summaryrefslogtreecommitdiff
path: root/.emacs.d/lisp/init-org.el~
blob: 6409de918d5cd2cfe4c6be04d1b96c829ac5c9bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
;; org-mode pdf outpuf
(setq org-latex-classes
      '(("article"
         "
          \\documentclass[11pt]{article}
          \\usepackage{xeCJK}
          \\usepackage{indentfirst}
          \\usepackage{amsmath}
          \\setlength{\\parindent}{2em}
          \\setCJKmainfont{SimSun}
          \\numberwithin{equation}{section}
          \\newtheorem{Theorem}{定理}[section]
          \\newtheorem{Definition}[Theorem]{定义}
          \\newtheorem{Lemma}[Theorem]{引理}
          \\newtheorem{Corollary}[Theorem]{推论}
        \\topmargin=-0.45in
        \\evensidemargin=0in
        \\oddsidemargin=0in
        \\textwidth=6.5in
        \\textheight=9.0in
        \\headsep=0.25in

        \\linespread{1.1}
         "
         ("\\section{%s}" . "\\section*{%s}")
         ("\\subsection{%s}" . "\\subsection*{%s}")
         ("\\subsubsection{%s}" . "\\subsubsection*{%s}")
         ("\\paragraph{%s}" . "\\paragraph*{%s}")
         ("\\subparagraph{%s}" . "\\subparagraph*{%s}"))
        ))
;; Use XeLaTex
(setq org-latex-pdf-process
      '("xelatex -interaction nonstopmode -output-directory %o %f"
        "xelatex -interaction nonstopmode -output-directory %o %f"
        "xelatex -interaction nonstopmode -output-directory %o %f"))