2 下载AucTex和CDLatex安装包
3 解压
- tar zxf auctex-11.86.tar.gz
- cd auctex-11.86
4 安装
- ./configure --with-emcs ;; 加上这个选项的目的就是让emacs识别
- make
- sudo make install
5 配置.emacs文件
5.1 Emacs加载Auctex
- (load "auctex.el" nil t t)
- (load "preview-latex.el" nil t t)
- (setq Tex-auto-save t)
- (setq Tex-parse-self t)
- (setq-default Tex-master nil)
5.2 设置xelatex为默认编辑命令,evience为默认阅读器
- (setq Tex-output-view-style
- (quote (("^pdf$" "." "evince &o %(outpage)"))))
- (add-hook 'LaTex-mode-hook
- (lambda()
- (add-to-list 'Tex-command-list '("XeLaTex" "%`xelatex%(mode)'
- %t" Tex-run-Tex nil t))
- (setq Tex-command-default "XeLaTex
6 添加CDLatex辅模式
6.1 下载cdlatex.el
6.2 复制到.emacs.d/下
- cp cdlatex.el ~/.emacs.d/
6.3 在.emacs中添加如下配置
- (require 'cdlatex)
- ;; 将cdlatex设置为AUCtex的辅模式
- (add-hook 'LaTex-mode-hook
阅读(9486) | 评论(0) | 转发(0) |