emacs 25.3で最新マスタバージョン0.200.10.x Spacemacs
を使用しました。私はユーザーが使用したいLatexコンパイラを定義できるように、orgmode
documentationで推奨されている関数を実装しようとしていました。私はその機能を実装しましたが、うまくいかないようです。ラテックスのコンパイルステップでは、ファイルヘッダに指定されているようにxelatex
の代わりにpdflatex
を使用し続けます。だから私はどのような調整をするかを考えようとしていました。Emacsの `spacemacs`がorgmodeヘッダに基づいてlatexコンパイラを変更する関数を受け入れるようにしました
;; Originally taken from Bruno Tavernier: http://thread.gmane.org/gmane.emacs.orgmode/31150/focus=31432
;; but adapted to use latexmk 4.20 or higher.
(defun my-auto-tex-cmd()
"When exporting from .org with latex, automatically run latex,
pdflatex, or xelatex as appropriate, using latexmk."
(let ((texcmd)))
;; default command: oldstyle latex via dvi
(setq texcmd "latexmk -dvi -pdfps -quiet %f")
;; pdflatex -> .pdf
(if (string-match "LATEX_CMD: pdflatex" (buffer-string))
(setq texcmd "latexmk -pdf -quiet %f"))
;; xelatex -> .pdf
(if (string-match "LATEX_CMD: xelatex" (buffer-string))
(setq texcmd "latexmk -pdflatex=xelatex -pdf -quiet %f"))
;; LaTeX compilation command
(setq org-latex-to-pdf-process (list texcmd)))
(add-hook 'org-export-latex-after-initial-vars-hook 'my-auto-tex-cmd)
私はa la設定spacemacs-configuration-layers
の変更を加える必要がありSpacemacs
問題listによると:
dotspacemacs-configuration-layers '(
(latex :variables latex-build-command "LaTeX"))
問題がdotspacemacs-configuration-layers
の変更を行うことは、私が適用できていないようだということですファイル固有の設定に基づいて変更します。
spacemacsで上記(my-auto-tex-cmd
)のこの機能を実装する正しい方法を知っている人はいますか?