我最近开始在 emacs 中使用 org-mode 来满足我的论文写作需求。我遇到的一个问题是,当我渲染 latex 方程式片段时,生成的内联图像太小,我难以轻松阅读。
有没有办法放大渲染的图像?
答案1
我的里面有这个.emacs
:
;; bigger latex fragment
(plist-put org-format-latex-options :scale 1.5)
答案2
他们的答案对我不起作用。这篇文章有点旧了,所以我猜它在旧版本的 org-mode 上有效。下面的方法对我有用Org 模式版本 9.1.9:
按下打开M-x customize-variable org-format-latex-options
自定义编辑器,我可以将比例设置为 1.5
这就是后来出现在我的 .emacs 文件中的内容:
'(org-format-latex-options
(quote
(:foreground default :background default :scale 1.5 :html-foreground "Black" :html-background "Transparent" :html-scale 1.0 :matchers
("begin" "$1" "$" "$$" "\\(" "\\["))))