我已经在 Aquamacs 和 Skim 之间设置了 pdf 同步,
(setq server-use-tcp t)
(server-start)
(custom-set-variables
'(LaTeX-command "latex -synctex=1")
'(TeX-view-program-list (quote (("Skim" "/Applications/Skim.app/Contents/SharedSupport/displayline %n %o %b") ("Preview" "open -a Preview.app %o"))))
)
(setq TeX-source-correlate-method 'synctex)
(add-hook 'LaTeX-mode-hook 'TeX-source-correlate-mode)
正向搜索和 PDF 同步工作正常,并且昨天反向搜索也正常工作。但是,今天,当我在 Skim 中单击CMD+ SHIFT+时ClICK,它不再进行反向搜索。有人知道如何修复它吗?
答案1
我认为我通过使用 Skim 中的自定义首选项解决了该问题。
我将命令改为:
/Applications/Aquamacs.app/Contents/MacOS/bin/emacsclient
现在向后搜索又可以正常工作了!
谢谢大家的帮助。