2012-06-30 14 views
13

मुझे ऑर्ग-मोड + लाटेक्स एक बहुत ही अद्भुत टूल होने के लिए मिला। मैं फॉर्मूला के पैमाने को कैसे बदल सकता हूं? वर्तमान में यह मेरे लिए बहुत छोटा है। मुझे पता है कि Emacs फ़ॉन्ट को स्केल कैसे करें (सी-एक्स+), लेकिन यह लाटेक्स सूत्रों के लिए काम नहीं करता है।Emacs के संगठन मोड में फॉर्मूले को बड़ा बनाने के लिए कैसे?

ओआरजी मोड में लाटेक्स फॉर्मूला कैसे बड़ा कर सकता है?

मैं कुछ पैरामीटर बदलने के लिए थक गया हूं, लेकिन समस्या अभी भी बनी हुई है।

आपके धैर्य के लिए धन्यवाद!

उत्तर

19

documentation

या (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. 

एक त्वरित सी-एच के अनुसारवीorg-format-latex-optionsआरईटी हमें देता है:

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) की आवश्यकता नहीं है। –

संबंधित मुद्दे