2012-06-30 8 views
13

私はOrg-mode + LaTeXが非常に素晴らしいツールであることを発見しました。数式のスケールを変更するにはどうすればよいですか?現在、私にとっては小さすぎます。私はEmacsフォント(C-x+)をどのようにスケールするか知っていますが、これはLaTeXの式では機能しません。Emacsのorg-modeでformuleをもっと大きくするには?

OrgモードでLaTeXの式を大きくするにはどうすればいいですか?

いくつかのパラメータを変更するのは疲れましたが、まだ問題は残ります。

ご理解いただきありがとうございます。

答えて

19

documentation

または

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. 

(info "(org) Previewing LaTeX fragments")迅速 C-HによるVorg-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)) 
+0

それは素晴らしいことです!あなたの助けを非常にありがとう! –

+0

'(orgを必要とする)'を前もって忘れないでください。 –

関連する問題