2012-06-30 2 views
13

Org-mode + LaTeX가 매우 훌륭한 도구라는 것을 알았습니다. 수식의 규모를 어떻게 바꿀 수 있습니까? 현재 그것은 나를 위해 너무 작습니다. 나는 이멕스 글꼴 (C-x+)의 크기를 조절하는 방법을 알고 있지만 LaTeX 수식에서는 작동하지 않습니다.이뮬의 org-mode에서 formule을 더 크게 만드는 방법은 무엇입니까?

어떻게 조직 모드에서 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 필요)'를 잊지 마세요. –

관련 문제