I have Emacs installed from http://emacsformacosx.com/ and AUCTeX installed from homebrew. I used the option --with-emacs=/Applications/Emacs.app/Contents/MacOS/Emacs
while installing AUCTeX. I am able to successfully load auctex.el
and preview-latex.el
using:
(add-to-list 'load-path "/usr/local/share/emacs/site-lisp")
(require 'tex-site)
(load "auctex.el" nil t t)
(load "preview-latex.el" nil t t)
However, AUCTeX's info files seem to be unavailable. I checked /usr/share/info/
and /Applications/Emacs.app/Contents/Resources/info/
, the two default locations the info program searches for info files, but those related to AUCTeX are absent.
I looked at the AUCTeX tarball from the source and it does have the info files under doc/
, which the INSTALL notes claim should be automatically installed during the installation process.
So what I am asking is:
- Does homebrew install the info files for AUCTeX? If yes, where are they located?
- If homebrew does not install the necessary info files, how can I copy them over from the source to the above mentioned directories. I guess I need to gzip them, so should I just include everything under the
doc/
directory?