> O.K. A z kad mozna sciagnac do niego auctex'a. Znalazlem, ale nie pod
> windowsy.
Teoretycznie auctex nie zależy od systemu, ale w praktyce trzeba
przynajmniej zmienić nazwy odpowiednich programów do wyświetlania DVI
itp. w zmiennej TeX-command-list. U mnie jej wartością jest:
(list (list "TeX" "tex \\nonstopmode\\input %t" 'TeX-run-TeX nil t)
(list "TeX Interactive" "tex %t" 'TeX-run-interactive nil t)
(list "MeX" "tex -fmt=mex --translate-file=il2-pl \\nonstopmode\\input %t"
'TeX-run-TeX nil t)
(list "LaTeX" "%l \\nonstopmode\\input{%t}"
'TeX-run-LaTeX nil t)
(list "LaTeX Interactive" "%l %t" 'TeX-run-interactive nil t)
(list "LaTeX2e" "latex2e \\nonstopmode\\input{%t}"
'TeX-run-LaTeX nil t)
(list "View" "windvi %s" 'TeX-run-silent t nil)
(list "View PostScript" "gsview32 %f" 'TeX-run-silent t nil)
(list "Print" "%p" 'TeX-run-command t nil)
(list "Queue" "%q" 'TeX-run-background nil nil)
(list "File" "dvips %d -o %f" 'TeX-run-command t nil)
(list "PDF" "ps2pdf %f %a" 'TeX-run-command t nil)
(list "BibTeX" "bibtex %s" 'TeX-run-BibTeX nil nil)
(list "Index" "makeindex %s" 'TeX-run-command nil t)
(list "Check" "lacheck %s" 'TeX-run-compile nil t)
(list "Spell" "<ignored>" 'TeX-run-ispell-on-document nil nil)
(list "Other" "" 'TeX-run-command t t)
;; Not part of standard TeX.
(list "LaTeX PDF" "pdflatex \\nonstopmode\\input{%t}"
'TeX-run-LaTeX nil t)
(list "Makeinfo" "makeinfo %t" 'TeX-run-compile nil t)
(list "Makeinfo HTML" "makeinfo --html %t" 'TeX-run-compile nil t)
(list "AmSTeX" "amstex \\nonstopmode\\input %t"
'TeX-run-TeX nil t))
Jeżeli nie używasz MikTeXa, to wykomentuj też w tex-site.el:
;; (when (memq system-type '(windows-nt))
;; ;; Try to make life easy for MikTeX users.
;; (require 'tex-mik))
Powodzenia,
Adam