作成日 :
最終更新日: 2025-01-02 Thu 20:49
ホーム | 文書トップ | 目次

Org-mode LaTeXエクスポート

Table of Contents

LaTeXへのexport

設定

(when (locate-library "ox-latex")
  (require 'ox-latex))

(when (locate-library "ox-bibtex")
  (require 'ox-bibtex))

;;; LaTeX 形式のファイル PDF に変換するためのコマンド
  (setq org-latex-pdf-process
        '("platex %f"
          "platex %f"
          "bibtex %b"
          "platex %f"
          "platex %f"
          "dvipdfmx %b.dvi"))

;;; ¥hypersetup{...} を出力しない
  (setq org-latex-with-hyperref nil)

  (add-to-list 'org-latex-classes
               '("thesis"
                 "¥¥documentclass{jarticle}
                [NO-PACKAGES]
                [NO-DEFAULT-PACKAGES]
                ¥¥usepackage[dvipdfmx]{graphicx}"
                 ("¥¥section{%s}" . "¥¥section*{%s}")
                 ("¥¥subsection{%s}" . "¥¥subsection*{%s}")
                 ("¥¥subsubsection{%s}" . "¥¥subsubsection*{%s}")
                 ("¥¥paragraph{%s}" . "¥¥paragraph*{%s}")
                 ("¥¥subparagraph{%s}" . "¥¥subparagraph*{%s}")))

ホーム | 文書トップ | 目次
Created by Emacs 29.4 (Org mode 9.6.15)