Подтвердить что ты не робот

Как сделать формулу больше в org-режиме Emacs?

Я нашел Org-mode + LaTeX очень замечательным инструментом. Как изменить масштаб формулы? В настоящее время это слишком мало для меня. Я знаю, как масштабировать шрифт Emacs (C-x +), но это не работает для формул LaTeX.

Как сделать формулы LaTeX больше в Org-режиме?

Я устал изменять некоторые параметры, но проблема все еще остается.

Благодарим за терпение!

4b9b3361

Ответ 1

Согласно документация

или (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-h v org-format-latex-options RET дает нам:

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))