に設定LaTeX-includegraphics-read-file
するとLaTeX-includegraphics-read-file-relative
、オートコンプリートでhelm
この機能が提供されます。
AUCTeXのセットアップ
カスタマイズLaTeX-includegraphics-read-file
(M-x customize-variable
RET LaTeX-includegraphics-read-file
RET)してrelative
オプションを選択するか、以下をinitファイルに追加できます。
(setq LaTeX-includegraphics-read-file 'LaTeX-includegraphics-read-file-relative)
インストールと設定 helm
あなたがインストールすることができhelm
Melpaリポジトリから、ここではそれを追加する方法の説明があります。完了したら、を発行M-x list-packages
RETし、helm
エントリに移動してを押しますi x。
次に、セットアップする必要がありますhelm
。 これは良い開始チュートリアルです。最小構成から選択できます。
(require 'helm-config)
(helm-mode 1)
および拡張構成:
(require 'helm)
(require 'helm-config)
;; The default "C-x c" is quite close to "C-x C-c", which quits Emacs.
;; Changed to "C-c h". Note: We must set "C-c h" globally, because we
;; cannot change `helm-command-prefix-key' once `helm-config' is loaded.
(global-set-key (kbd "C-c h") 'helm-command-prefix)
(global-unset-key (kbd "C-x c"))
(global-set-key (kbd "M-x") 'helm-M-x) ; This was not present in the suggested extended config
(define-key helm-map (kbd "<tab>") 'helm-execute-persistent-action) ; rebind tab to run persistent action
(define-key helm-map (kbd "C-i") 'helm-execute-persistent-action) ; make TAB works in terminal
(define-key helm-map (kbd "C-z") 'helm-select-action) ; list actions using C-z
(when (executable-find "curl")
(setq helm-google-suggest-use-curl-p t))
(setq helm-split-window-in-side-p t ; open helm buffer inside current window, not occupy whole other window
helm-move-to-line-cycle-in-source t ; move to end or beginning of source when reaching top or bottom of source.
helm-ff-search-library-in-sexp t ; search for library in `require' and `declare-function' sexp.
helm-scroll-amount 8 ; scroll 8 lines other window using M-<next>/M-<prior>
helm-ff-file-name-history-use-recentf t)
(helm-mode 1)
Emacsのデフォルトの補完とhelm
の違いに注意してください。
新機能を使い始める
Emacsを再起動すると、準備が整います。LaTeXバッファーで問題を解決しC-c RET includegraphics
RET(helm
オートコンプリートを利用できることに注意)、含める画像を選択します。プレビューを表示するためには、冒頭で示したように、に関連するプレス倍キーバインドhelm-execute-persistent-action
(C-zデフォルトでは、またはTABの拡張設定上記)、または上下に移動しでファイルの一覧にC-upしてC-down(参照この回答を)。
helm
して設定すると、プレビューが表示さLaTeX-includegraphics-read-file
れLaTeX-includegraphics-read-file-relative
ます。これがあなたを満足させるかどうか私に知らせてください、そして私は答えを書きます。