2016-11-16 8 views

답변

4

하나의 대안은, C-x RET C-\set-input-method 전화 TeX을 선택하고 자동으로 γ로 대체됩니다 \gamma를 입력하는 것입니다. 그런 다음 입력 방법을 C-\으로 토글 할 수 있어야합니다. 또는 원하는 경우 (setq default-input-method "TeX")을 초기화 파일에 추가하고 C-\을 사용하여 TeX 입력을 더 빨리 수행하고 동일한 작업을 수행 할 수 있습니다.

1

필자는 julia latexsubs에 대한 완료 시점을 썼다. 그 바로 다음

(defun julia-completion-at-point() 
    (let ((bnds (bounds-of-thing-at-point 'symbol))) 
    (when bnds 
     (cond 
     ;; complete latex symbol when current symbol is prefixed 
     ;; by '\' 
     ((eq (char-before (car bnds)) ?\\) 
     (list (1- (car bnds)) (cdr bnds) julia-latexsubs 
       :annotation-function 
       #'(lambda (arg) 
        (gethash arg julia-latexsubs "")))))))) 
당신의 줄리아 모드 후크에서 다음

, 또는 ess-julia-mode-hook

(add-hook 'completion-at-point-functions 'julia-completion-at-point nil t) 
0

당신은 company-math을 사용할 수 있습니다 (julia-latexsubsjulia-mode에 정의 된 라텍스 기호의 해시입니다). 내 설정은 here

입니다.