Si se establece LaTeX-includegraphics-read-file
que LaTeX-includegraphics-read-file-relative
, con terminación automática helm
ofrece esta característica:
Configurar AUCTeX
Puede personalizar LaTeX-includegraphics-read-file
( M-x customize-variable
RET LaTeX-includegraphics-read-file
RET) y seleccionar la relative
opción o agregar lo siguiente a su archivo init:
(setq LaTeX-includegraphics-read-file 'LaTeX-includegraphics-read-file-relative)
Instalar y configurar helm
Puede instalar helm
desde el repositorio de Melpa, aquí están las instrucciones sobre cómo agregarlo. Cuando haya terminado, emita M-x list-packages
RET, vaya a la helm
entrada y presione i x.
Ahora necesitas configurarlo helm
. Aquí hay un buen tutorial de inicio. Puede elegir entre una configuración mínima:
(require 'helm-config)
(helm-mode 1)
y una configuración extendida:
(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)
Tenga en cuenta las diferencias entre la finalización predeterminada de Emacs y helm
la de uno .
Comience a usar la nueva función
Reinicie Emacs y estará listo. En un búfer de LaTeX, emita C-c RET includegraphics
RET(tenga en cuenta que puede explotar el helm
autocompletado) y seleccione la imagen que desea incluir. Para ver la vista previa, como se muestra al principio, presione dos veces la combinación de teclas asociada a helm-execute-persistent-action
( C-zde manera predeterminada, o TABen la configuración extendida anterior) o mueva hacia arriba y hacia abajo en la lista de archivos con C-upy C-down(vea esta respuesta ).
helm
y conjuntoLaTeX-includegraphics-read-file
aLaTeX-includegraphics-read-file-relative
usted tendrá previstas. Avísame si esto te satisface y escribiré una respuesta.