1

私はemacsを使い始めたばかりなので、これを正しく行っているかどうかさえわかりません。 C-c C-c次に、プロンプトが表示Command [pdflatex]:されるので、入力しますlatexmk。それはそれが期待していることでもありますか?次に、次のエラーが発生します。

Latexmk: Initialization file '/home/dustin/.latexmkrc' gave an error:
     Substitution pattern not terminated at (eval 10) line 1, <GEN0> chunk 1.

Latexmk: Stopping because of problem with rc file

これが私の.latexmkファイルです:

$pdflatex = 'pdflatex -interaction=nonstopmode -file-line-error -synctex=1' -pdf %s;

ここに私の.emacsファイルがあります:

(add-to-list 'load-path "~/.emacs.d/plugins")
(setq py-install-directory "~/.emacs.d/plugins")
(require 'python-mode)

;; ========== Prevent Emacs from making backup files ==========                        

(setq make-backup-files nil)

;; ========== Enable Line Numbering ==========                                         

(line-number-mode 1)

;; ========== Set the fill column ==========                                           

(setq default-fill-column 80)

;; ===== Turn on Auto Fill mode automatically in all modes =====                       

;; Auto-fill-mode the the automatic wrapping of lines and insertion of                 
;; newlines when the cursor goes over the column limit.             

;; This should actually turn on auto-fill-mode by default in all major                 
;; modes. The other way to do this is to turn on the fill for specific modes           
;; via hooks.                                                                          

(setq auto-fill-mode 1)

;; ========= Set colours ==========                                                    

;; Set cursor and mouse-pointer colours                                                
(set-cursor-color "white")
(set-mouse-color "goldenrod")

;; Set region background colour                                                        
(set-face-background 'region "blue")

;; Set emacs background colour                                                         
(set-background-color "black")

(defun run-latexmk ()
  (interactive)
  (let ((TeX-save-query nil)
        (TeX-process-asynchronous nil)
        (master-file (TeX-master-file)))
    (TeX-save-document "")
    (TeX-run-TeX "latexmk"
         (TeX-command-expand "latexmk -pdflatex='pdflatex -file-line-error -synctex=1'\
                               -pdf %s" 'TeX-master-file)
                 master-file)
    (if (plist-get TeX-error-report-switches (intern master-file))
        (TeX-next-error t)
      (progn
    (demolish-tex-help)
    (minibuffer-message "latexmk: done.")))))
4

2 に答える 2

2

表示されるエラーは、.latexmkrc ファイルが原因です。コマンドライン オプション-pdfを指定する代わりに、同等の構成オプションを使用できます$pdf_mode = 1;。また、ソースファイル%sを構成ファイルに追加すると、latexmk が混乱するようです。したがって、使用してみてください:

$pdf_mode = 1;
$pdflatex = 'pdflatex -interaction=nonstopmode -file-line-error -synctex=1';

latexmk を Emacs のキーにバインドし、エラーがあれば表示するようにしたい場合は、この質問への回答に興味があるかもしれません。

于 2013-04-09T07:26:29.707 に答える
0

私は何をする必要があるかを見つけました。この投稿で latexmk を呼び出す方法、追加する必要がありました

(add-hook 'LaTeX-mode-hook (lambda ()
  (push
    '("Latexmk" "latexmk -pdf %s" TeX-run-TeX nil t
      :help "Run Latexmk on file")
    Tex-command-list)))

今、完了後にpdfを生成するためにokularが残っています。誰かがそれについて考えを持っていますか?

于 2013-04-09T16:59:20.350 に答える