【发布时间】:2017-01-10 12:02:41
【问题描述】:
我正在使用 emacs 的org-mode 来排版笔记并通过 LaTeX 将它们导出为 pdf。一切正常,除非我使用 Unicode 符号,如
\begin{equation}
\left( \frac{P^2}{2m} + V(x,y,z) \right) Ψ = E Ψ
\end{equation}
我在哪里使用Ψ。使用#+latex_compiler: lualatex 和
(setq org-latex-pdf-process
'("lualatex -shell-escape -interaction nonstopmode %f"
"lualatex -shell-escape -interaction nonstopmode %f"))
我已经设法使用 LuaLaTeX 导出或多或少有问题的 PDF,但是公式的预览 (C-c C-x C-l) 对于带有 Unicode 符号的公式的预览是完全损坏的。
我需要在我的 emacs 配置中进行哪些更改才能将 LuaLaTeX 用于org-mode 中与 LaTeX 相关的一切?
【问题讨论】:
标签: unicode emacs latex org-mode