LoginSignup
9
9

More than 5 years have passed since last update.

Emacs の Org ファイルを platex と dvipdfmx で PDF 化する設定.

Last updated at Posted at 2013-03-12

org-beamer を使っていると,C-c C-e d で作成途中のプレゼンを PDF プレビューすることがよくあります.しかし,この C-c C-e d (org-export-as-pdf-and-open) はデフォルトでは pdflatex を利用するため,dvipdfmx を想定している場合などは,PDF をうまく生成できません.そんなときには,org-latex-to-pdf-process を設定して org-export-as-pdf-and-open で好みのコマンドを使いましょう.

私は platex と dvipdfmx との組合せで使っているので:

(require 'org-latex)
(setq org-latex-to-pdf-process '("platex %b" "platex %b" "dvipdfmx %b"))

のような設定にしています.

参考

9
9
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9
9