简体   繁体   中英

AUCTeX package missing in emacs

In my emacs 24.3, I can't find the AUCTeX package. If I enter PACKAGE-LIST-PACKAGE, I find various packages for AUCTeX like "auctex-lua" or "auto-complete for auctex". However, there is no auctex package that I can install. Why is it gone ?

AUCTeX is available via GNU ELPA , not MELPA.

You can configure multiple repositories, eg by using add-to-list instead of setting package-archives directly:

(add-to-list 'package-archives
             '("melpa" . "http://melpa.org/packages/") t)

This should keep GNU ELPA in your list of archives, but in case it doesn't you can always add it back. It should look something like

("gnu" . "http://elpa.gnu.org/packages/")

Once you've done this you should be able to install AUCTeX via package.el .

Note that this is likely the one repository that most users should have in their package-archives list. It's the official GNU repository, enabled by default. Of course, feel free to add others as you wish!

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM