Jak pozwolić AUCTeX otwierać pliki PDF za pomocą narzędzi pdf


11

Niektóre edytory TeX / LaTeX obsługują osadzanie przeglądarki PDF oraz obsługę wyszukiwania do przodu / do tyłu.

Chcę skonfigurować narzędzia AUCTeX i pdf do tego wyniku.

Znalazłem dyskusję na liście mailingowej.

https://lists.gnu.org/archive/html/auctex/2015-02/msg00013.html

Podaje metodę implementacji tego otwierającego się pliku PDF za pomocą narzędzi pdf w Emacsie. Śledziłem to, ale to nie działa.

Oto moja konfiguracja:

(require 'tex-site)
(require 'latex)

;;; AUCTeX config
(setq TeX-auto-save t
      TeX-parse-self t)

(setq-default TeX-master nil)

;; automatic detection of master file
(defun guess-TeX-master (filename)
  "Guess the master file for FILENAME from currently open .tex files."
  (let ((candidate nil)
        (filename (file-name-nondirectory filename)))
    (save-excursion
      (dolist (buffer (buffer-list))
        (with-current-buffer buffer
          (let ((name (buffer-name))
                (file buffer-file-name))
            (if (and file (string-match "\\.tex$" file))
                (progn
                  (goto-char (point-min))
                  (if (re-search-forward (concat "\\\\input{" filename "}") nil t)
                      (setq candidate file))
                  (if (re-search-forward (concat "\\\\include{" (file-name-sans-extension filename) "}") nil t)
                      (setq candidate file))))))))
    (if candidate
        (message "TeX master document: %s" (file-name-nondirectory candidate)))
    candidate))

(add-hook 'LaTeX-mode-hook
          '(lambda ()
             (setq TeX-master (guess-TeX-master (buffer-file-name)))
             ))

;; enable RefTeX in AUCTeX (LaTeX-mode)
(setq reftex-plug-into-AUCTeX t)
(add-hook 'latex-mode-hook 'turn-on-reftex) ; with Emacs latex mode
(add-hook 'LaTeX-mode-hook 'turn-on-reftex) ; with AUCTeX LaTeX mode

;; view generated PDF with `pdf-tools'.
(unless (assoc "PDF Tools" TeX-view-program-list-builtin)
  (add-to-list 'TeX-view-program-list-builtin
               '("PDF Tools" TeX-pdf-tools-sync-view)))
(add-to-list 'TeX-view-program-selection
             '(output-pdf "PDF Tools"))

;; LaTeX source code block syntax highlighting.
;; [ minted ]
;; toggle shell escape using [C-c C-t x].
(defun TeX-toggle-escape ()
  "Toggle Shell Escape"
  (interactive)
  (setq-local LaTeX-command
              (if (string= LaTeX-command "latex") "latex -shell-escape"
                "latex"))
  (message (concat "shell escape "
                   (if (string= LaTeX-command "latex -shell-escape")
                       "enabled"
                     "disabled"))
           ))
(add-hook 'LaTeX-mode-hook
          '(lambda ()
             (local-set-key (kbd "C-c C-t x") 'TeX-toggle-escape)))

Odpowiedzi:


13

Oto moja konfiguracja, używanie auctex-11.89i pdf-tools-20151224.1159:

;; Use pdf-tools to open PDF files
(setq TeX-view-program-selection '((output-pdf "PDF Tools"))
      TeX-source-correlate-start-server t)

;; Update PDF buffers after successful LaTeX runs
(add-hook 'TeX-after-compilation-finished-functions
           #'TeX-revert-document-buffer)

2
Tylko komentarz: TeX-PDF-modejest domyślnie aktywny od AUCTeX 11.88.
giordano,

Wypróbowałem twoją metodę, może działać, gdy próbuję emacs -qi ładuję pakiety. ale ma problem z moimi konfiguracjami. Czy istnieje sposób, aby dowiedzieć się, dlaczego?
stardiviner

Jedyne, co mogę wymyślić: podzielić plik konfiguracyjny na części, komentować kawałek po kawałku, próbując go przybić do kodu, który jest w konflikcie z moim rozwiązaniem.
Manuel Uberti

1
FYI: Nie mogłem znaleźć TeX-after-TeX-LaTeX-command-finished-hook. TeX-after-compilation-finished-functionsteraz wydaje się być odpowiednim hakiem (a przynajmniej tak mówi dokumentacja).
Dan

@ Dan Przynajmniej dla wersji 12.1 (2017-12-04), widzę tylko TeX-after-compilation-finished-hookw instrukcji AUCTeX . Myślę, że nie jest już ani TeX-after-TeX-LaTeX-command-finished-hookani TeX-after-compilation-finished-functions.
Adam Liter
Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.