23

我发现 Org-mode + LaTeX 是一个非常棒的工具。如何更改公式的比例?目前它对我来说太小了。我知道如何缩放 Emacs 字体 ( C-x+),但这不适用于 LaTeX 公式。

如何在 Org 模式下使 LaTeX 公式更大?

我已经厌倦了更改一些参数,但问题仍然存在。

感谢您的耐心等待!

4

1 回答 1

34

根据 文档

或者(info "(org) Previewing LaTeX fragments")

You can customize the variable `org-format-latex-options' to
influence some aspects of the preview. In particular, the `:scale'
(and for HTML export, `:html-scale') property can be used to
adjust the size of the preview images.

快速 C-hvorg-format-latex-optionsRET 给我们:

org-format-latex-options is a variable defined in `org.el'.
Its value is (:foreground default :background default :scale 1.0 :html-foreground "Black" :html-background "Transparent" :html-scale 1.0 :matchers
             ("begin" "$1" "$" "$$" "\\(" "\\["))


Documentation:
Options for creating images from LaTeX fragments.
[snip]
:scale       a scaling factor for the size of the images, to get more pixels
[snip]

例如,要将比例设置为2.0

(setq org-format-latex-options (plist-put org-format-latex-options :scale 2.0))
于 2012-06-30T08:18:43.700 回答