23

Org-mode + LaTeX はとても素晴らしいツールだと思いました。数式のスケールを変更するにはどうすればよいですか? 現在、私には小さすぎます。Emacs フォント ( ) をスケーリングする方法は知っていますC-x+が、これは LaTeX 数式では機能しません。

Org-modeで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 に答える