匹配 Aquamacs emacs 中的设置

发布于 2024-09-10 06:54:26 字数 360 浏览 14 评论 0原文

如何在 Mac OS X emacs 的 AucTeX 中匹配 Aquamacs 的设置?

由于某些原因我尝试将 AucTeX 安装到 Mac OS X 的 emacs 上。

对于预装了 AucTeX 的 Aquamacs,一切都非常酷。

  1. 它运行 SKIM pdf 查看器来查看结果。
  2. 它可以使用 pdfsync 在 Aquamacs 和 SKIM 之间进行反向/正向链接。

How can I match Aquamacs' settings in Mac OS X emacs' AucTeX?

Because of some reason I tried to install AucTeX to emacs for Mac OS X.

For Aquamacs that has pre-installed AucTeX, everything is pretty cool.

  1. It runs SKIM pdf viewer for viewing the result.
  2. It can use pdfsync for reverse/forward link between Aquamacs and SKIM.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

童话里做英雄 2024-09-17 06:54:26

我的 .emacs 中有以下内容,尽管可能有更好的方法:

(setq LaTeX-command "latex -synctex=1 -shell-escape")
(when (file-exists-p "/Applications/Skim.app/Contents/SharedSupport/displayline")
  (add-to-list 'TeX-output-view-style
               '("^pdf$" "." "/Applications/Skim.app/Contents/SharedSupport/displayline -b %n %o %b")))

您可以尝试查看这些变量在 Aquamacs 中设置的内容。使用 Ch v VARIABLE RET 查看文档和当前值。

I have the following in my .emacs, though there are probably better ways:

(setq LaTeX-command "latex -synctex=1 -shell-escape")
(when (file-exists-p "/Applications/Skim.app/Contents/SharedSupport/displayline")
  (add-to-list 'TeX-output-view-style
               '("^pdf$" "." "/Applications/Skim.app/Contents/SharedSupport/displayline -b %n %o %b")))

You might try seeing what those variables are set to in Aquamacs. Use C-h v VARIABLE RET to see documentation and the current value.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文