Add arch taglines
[bpt/emacs.git] / lisp / textmodes / tex-mode.el
CommitLineData
95a045bd 1;;; tex-mode.el --- TeX, LaTeX, and SliTeX mode commands -*- coding: utf-8 -*-
d501f516 2
bca7a08b 3;; Copyright (C) 1985,86,89,92,94,95,96,97,98,1999,2002,2003
d61140e8 4;; Free Software Foundation, Inc.
eea8d4ef 5
70f20973 6;; Maintainer: FSF
d7b4d18f 7;; Keywords: tex
e5167999 8
528415e7 9;; Contributions over the years by William F. Schelter, Dick King,
70f20973 10;; Stephen Gildea, Michael Prange, Jacob Gore, and Edward M. Reingold.
528415e7 11
869bff31 12;; This file is part of GNU Emacs.
13
14;; GNU Emacs is free software; you can redistribute it and/or modify
15;; it under the terms of the GNU General Public License as published by
e5167999 16;; the Free Software Foundation; either version 2, or (at your option)
869bff31 17;; any later version.
18
19;; GNU Emacs is distributed in the hope that it will be useful,
20;; but WITHOUT ANY WARRANTY; without even the implied warranty of
21;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22;; GNU General Public License for more details.
23
24;; You should have received a copy of the GNU General Public License
6da9bbd6
RS
25;; along with GNU Emacs; see the file COPYING. If not, write to the
26;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
27;; Boston, MA 02111-1307, USA.
869bff31 28
55535639
PJ
29;;; Commentary:
30
e5167999
ER
31;;; Code:
32
bed1b0c8
RS
33;; Pacify the byte-compiler
34(eval-when-compile
35 (require 'compare-w)
ea590e1c 36 (require 'cl)
bed1b0c8
RS
37 (require 'skeleton))
38
a0e9c22a 39(require 'shell)
2f3067de 40(require 'compile)
528415e7 41
d61140e8
RS
42(defgroup tex-file nil
43 "TeX files and directories"
44 :prefix "tex-"
45 :group 'tex)
46
47(defgroup tex-run nil
48 "Running external commands from TeX mode"
49 :prefix "tex-"
50 :group 'tex)
51
52(defgroup tex-view nil
53 "Viewing and printing TeX files"
54 :prefix "tex-"
55 :group 'tex)
56
7e1dae73 57;;;###autoload
d61140e8
RS
58(defcustom tex-shell-file-name nil
59 "*If non-nil, the shell file name to run in the subshell used to run TeX."
60 :type '(choice (const :tag "None" nil)
61 string)
62 :group 'tex-run)
528415e7 63
7e1dae73 64;;;###autoload
d61140e8 65(defcustom tex-directory "."
f73741fc 66 "*Directory in which temporary files are written.
81c735c0 67You can make this `/tmp' if your TEXINPUTS has no relative directories in it
528415e7 68and you don't try to apply \\[tex-region] or \\[tex-buffer] when there are
d61140e8
RS
69`\\input' commands with relative directories."
70 :type 'directory
71 :group 'tex-file)
869bff31 72
725b7428 73;;;###autoload
d61140e8 74(defcustom tex-first-line-header-regexp nil
725b7428
RS
75 "Regexp for matching a first line which `tex-region' should include.
76If this is non-nil, it should be a regular expression string;
77if it matches the first line of the file,
d61140e8
RS
78`tex-region' always includes the first line in the TeX run."
79 :type '(choice (const :tag "None" nil)
80 regexp)
81 :group 'tex-file)
725b7428 82
f73741fc 83;;;###autoload
d61140e8 84(defcustom tex-main-file nil
f73741fc 85 "*The main TeX source file which includes this buffer's file.
be4a962d
RS
86The command `tex-file' runs TeX on the file specified by `tex-main-file'
87if the variable is non-nil."
d61140e8
RS
88 :type '(choice (const :tag "None" nil)
89 file)
90 :group 'tex-file)
f73741fc 91
7e1dae73 92;;;###autoload
d61140e8
RS
93(defcustom tex-offer-save t
94 "*If non-nil, ask about saving modified buffers before \\[tex-file] is run."
95 :type 'boolean
96 :group 'tex-file)
869bff31 97
7e1dae73 98;;;###autoload
d61140e8 99(defcustom tex-run-command "tex"
869bff31 100 "*Command used to run TeX subjob.
c3ce7bf4
RS
101TeX Mode sets `tex-command' to this string.
102See the documentation of that variable."
d61140e8
RS
103 :type 'string
104 :group 'tex-run)
869bff31 105
7e1dae73 106;;;###autoload
d61140e8 107(defcustom latex-run-command "latex"
869bff31 108 "*Command used to run LaTeX subjob.
c3ce7bf4
RS
109LaTeX Mode sets `tex-command' to this string.
110See the documentation of that variable."
d61140e8
RS
111 :type 'string
112 :group 'tex-run)
528415e7 113
bed1b0c8
RS
114;;;###autoload
115(defcustom slitex-run-command "slitex"
116 "*Command used to run SliTeX subjob.
c3ce7bf4
RS
117SliTeX Mode sets `tex-command' to this string.
118See the documentation of that variable."
bed1b0c8
RS
119 :type 'string
120 :group 'tex-run)
121
c3ce7bf4 122;;;###autoload
95a045bd 123(defcustom tex-start-options ""
9e0ad27a 124 "*TeX options to use when starting TeX.
95a045bd
SM
125These immediately precede the commands in `tex-start-commands'
126and the input file name, with no separating space and are not shell-quoted.
127If nil, TeX runs with no options. See the documentation of `tex-command'."
128 :type 'string
bed1b0c8 129 :group 'tex-run
9e0ad27a
RS
130 :version "21.4")
131
132;;;###autoload
133(defcustom tex-start-commands "\\nonstopmode\\input"
134 "*TeX commands to use when starting TeX.
95a045bd
SM
135They are shell-quoted and precede the input file name, with a separating space.
136If nil, no commands are used. See the documentation of `tex-command'."
9e0ad27a
RS
137 :type '(radio (const :tag "Interactive \(nil\)" nil)
138 (const :tag "Nonstop \(\"\\nonstopmode\\input\"\)"
139 "\\nonstopmode\\input")
140 (string :tag "String at your choice"))
141 :group 'tex-run
142 :version "21.4")
bed1b0c8 143
7afecb99 144(defvar latex-standard-block-names
dd459839
SM
145 '("abstract" "array" "center" "description"
146 "displaymath" "document" "enumerate" "eqnarray"
147 "eqnarray*" "equation" "figure" "figure*"
148 "flushleft" "flushright" "itemize" "letter"
149 "list" "minipage" "picture" "quotation"
150 "quote" "slide" "sloppypar" "tabbing"
151 "table" "table*" "tabular" "tabular*"
152 "thebibliography" "theindex*" "titlepage" "trivlist"
153 "verbatim" "verbatim*" "verse" "math")
528415e7
RS
154 "Standard LaTeX block names.")
155
7e1dae73 156;;;###autoload
d61140e8 157(defcustom latex-block-names nil
528415e7 158 "*User defined LaTeX block names.
7afecb99 159Combined with `latex-standard-block-names' for minibuffer completion."
d61140e8
RS
160 :type '(repeat string)
161 :group 'tex-run)
869bff31 162
7e1dae73 163;;;###autoload
d61140e8 164(defcustom tex-bibtex-command "bibtex"
528415e7 165 "*Command used by `tex-bibtex-file' to gather bibliographic data.
81c735c0 166If this string contains an asterisk (`*'), that is replaced by the file name;
d61140e8
RS
167otherwise, the file name, preceded by blank, is added at the end."
168 :type 'string
169 :group 'tex-run)
869bff31 170
7e1dae73 171;;;###autoload
d61140e8 172(defcustom tex-dvi-print-command "lpr -d"
528415e7 173 "*Command used by \\[tex-print] to print a .dvi file.
81c735c0 174If this string contains an asterisk (`*'), that is replaced by the file name;
d61140e8
RS
175otherwise, the file name, preceded by blank, is added at the end."
176 :type 'string
177 :group 'tex-view)
528415e7 178
7e1dae73 179;;;###autoload
d61140e8 180(defcustom tex-alt-dvi-print-command "lpr -d"
528415e7 181 "*Command used by \\[tex-print] with a prefix arg to print a .dvi file.
81c735c0
RS
182If this string contains an asterisk (`*'), that is replaced by the file name;
183otherwise, the file name, preceded by blank, is added at the end.
528415e7 184
81c735c0
RS
185If two printers are not enough of a choice, you can set the variable
186`tex-alt-dvi-print-command' to an expression that asks what you want;
528415e7
RS
187for example,
188
189 (setq tex-alt-dvi-print-command
190 '(format \"lpr -P%s\" (read-string \"Use printer: \")))
191
192would tell \\[tex-print] with a prefix argument to ask you which printer to
d61140e8
RS
193use."
194 :type '(choice (string :tag "Command")
195 (sexp :tag "Expression"))
196 :group 'tex-view)
869bff31 197
7e1dae73 198;;;###autoload
4372483c 199(defcustom tex-dvi-view-command '(if (eq window-system 'x) "xdvi" "dvi2tty * | cat -s")
81c735c0 200 "*Command used by \\[tex-view] to display a `.dvi' file.
746c30e2 201If it is a string, that specifies the command directly.
81c735c0 202If this string contains an asterisk (`*'), that is replaced by the file name;
746c30e2 203otherwise, the file name, preceded by a space, is added at the end.
528415e7 204
746c30e2
RS
205If the value is a form, it is evaluated to get the command to use."
206 :type '(choice (const nil) string sexp)
d61140e8 207 :group 'tex-view)
869bff31 208
7e1dae73 209;;;###autoload
d61140e8 210(defcustom tex-show-queue-command "lpq"
528415e7 211 "*Command used by \\[tex-show-print-queue] to show the print queue.
d61140e8
RS
212Should show the queue(s) that \\[tex-print] puts jobs on."
213 :type 'string
214 :group 'tex-view)
869bff31 215
7e1dae73 216;;;###autoload
9920303f 217(defcustom tex-default-mode 'latex-mode
869bff31 218 "*Mode to enter for a new file that might be either TeX or LaTeX.
219This variable is used when it can't be determined whether the file
220is plain TeX or LaTeX or what because the file contains no commands.
d61140e8
RS
221Normally set to either `plain-tex-mode' or `latex-mode'."
222 :type 'function
223 :group 'tex)
869bff31 224
7e1dae73 225;;;###autoload
d61140e8
RS
226(defcustom tex-open-quote "``"
227 "*String inserted by typing \\[tex-insert-quote] to open a quotation."
228 :type 'string
95a045bd 229 :options '("``" "\"<" "\"`" "<<" "«")
d61140e8 230 :group 'tex)
869bff31 231
7e1dae73 232;;;###autoload
d61140e8
RS
233(defcustom tex-close-quote "''"
234 "*String inserted by typing \\[tex-insert-quote] to close a quotation."
235 :type 'string
95a045bd 236 :options '("''" "\">" "\"'" ">>" "»")
d61140e8 237 :group 'tex)
869bff31 238
528415e7
RS
239(defvar tex-last-temp-file nil
240 "Latest temporary file generated by \\[tex-region] and \\[tex-buffer].
241Deleted when the \\[tex-region] or \\[tex-buffer] is next run, or when the
81c735c0 242tex shell terminates.")
528415e7 243
95a045bd 244(defvar tex-command "tex"
c3ce7bf4 245 "*Command to run TeX.
95a045bd 246If this string contains an asterisk \(`*'\), that is replaced by the file name;
9e0ad27a
RS
247otherwise the value of `tex-start-options', the \(shell-quoted\)
248value of `tex-start-commands', and the file name are added at the end
249with blanks as separators.
c3ce7bf4
RS
250
251In TeX, LaTeX, and SliTeX Mode this variable becomes buffer local.
252In these modes, use \\[set-variable] if you want to change it for the
253current buffer.")
869bff31 254
255(defvar tex-trailer nil
256 "String appended after the end of a region sent to TeX by \\[tex-region].")
257
258(defvar tex-start-of-header nil
898b9ac1 259 "Regular expression used by \\[tex-region] to find start of file's header.")
869bff31 260
261(defvar tex-end-of-header nil
898b9ac1 262 "Regular expression used by \\[tex-region] to find end of file's header.")
869bff31 263
264(defvar tex-shell-cd-command "cd"
265 "Command to give to shell running TeX to change directory.
81c735c0 266The value of `tex-directory' is appended to this, separated by a space.")
869bff31 267
268(defvar tex-zap-file nil
269 "Temporary file name used for text being sent as input to TeX.
270Should be a simple file name with no extension or directory specification.")
271
272(defvar tex-last-buffer-texed nil
273 "Buffer which was last TeXed.")
274
275(defvar tex-print-file nil
276 "File name that \\[tex-print] prints.
277Set by \\[tex-region], \\[tex-buffer], and \\[tex-file].")
278
8a591d52
SM
279(defvar tex-mode-syntax-table
280 (let ((st (make-syntax-table)))
281 (modify-syntax-entry ?% "<" st)
282 (modify-syntax-entry ?\n ">" st)
283 (modify-syntax-entry ?\f ">" st)
284 (modify-syntax-entry ?\C-@ "w" st)
285 (modify-syntax-entry ?' "w" st)
286 (modify-syntax-entry ?@ "_" st)
287 (modify-syntax-entry ?* "_" st)
288 (modify-syntax-entry ?\t " " st)
bca7a08b
SM
289 ;; ~ is printed by TeX as a space, but it's semantics in the syntax
290 ;; of TeX is not `whitespace' (i.e. it's just like \hspace{foo}).
8a591d52
SM
291 (modify-syntax-entry ?~ "." st)
292 (modify-syntax-entry ?$ "$$" st)
293 (modify-syntax-entry ?\\ "/" st)
294 (modify-syntax-entry ?\" "." st)
295 (modify-syntax-entry ?& "." st)
296 (modify-syntax-entry ?_ "." st)
297 (modify-syntax-entry ?^ "." st)
298 st)
869bff31 299 "Syntax table used while in TeX mode.")
53c4fe47
SM
300\f
301;;;;
302;;;; Imenu support
303;;;;
869bff31 304
d6709b80 305(defcustom latex-imenu-indent-string ". "
a53c647b
RS
306 "*String to add repeated in front of nested sectional units for Imenu.
307An alternative value is \" . \", if you use a font with a narrow period."
308 :type 'string
309 :group 'tex)
310
d6709b80
SM
311(defvar latex-section-alist
312 '(("part" . 0) ("chapter" . 1)
313 ("section" . 2) ("subsection" . 3)
314 ("subsubsection" . 4)
315 ("paragraph" . 5) ("subparagraph" . 6)))
316
53c4fe47
SM
317(defvar latex-metasection-list
318 '("documentstyle" "documentclass"
319 "begin{document}" "end{document}"
320 "appendix" "frontmatter" "mainmatter" "backmatter"))
321
a5e2ae01 322(defun latex-imenu-create-index ()
53c4fe47
SM
323 "Generate an alist for imenu from a LaTeX buffer."
324 (let ((section-regexp
325 (concat "\\\\" (regexp-opt (mapcar 'car latex-section-alist) t)
326 "\\*?[ \t]*{"))
327 (metasection-regexp
328 (concat "\\\\" (regexp-opt latex-metasection-list t)))
329 i0 menu case-fold-search)
a53c647b
RS
330 (save-excursion
331 ;; Find the top-most level in this file but don't allow it to be
332 ;; any deeper than "section" (which is top-level in an article).
333 (goto-char (point-min))
334 (if (search-forward-regexp "\\\\part\\*?[ \t]*{" nil t)
335 (setq i0 0)
336 (if (search-forward-regexp "\\\\chapter\\*?[ \t]*{" nil t)
337 (setq i0 1)
338 (setq i0 2)))
339
340 ;; Look for chapters and sections.
341 (goto-char (point-min))
53c4fe47 342 (while (search-forward-regexp section-regexp nil t)
a53c647b
RS
343 (let ((start (match-beginning 0))
344 (here (point))
345 (i (cdr (assoc (buffer-substring-no-properties
346 (match-beginning 1)
347 (match-end 1))
d6709b80 348 latex-section-alist))))
a53c647b
RS
349 (backward-char 1)
350 (condition-case err
351 (progn
352 ;; Using sexps allows some use of matching {...} inside
353 ;; titles.
354 (forward-sexp 1)
d6709b80
SM
355 (push (cons (concat (apply 'concat
356 (make-list
357 (max 0 (- i i0))
358 latex-imenu-indent-string))
359 (buffer-substring-no-properties
360 here (1- (point))))
361 start)
362 menu))
a53c647b
RS
363 (error nil))))
364
365 ;; Look for included material.
366 (goto-char (point-min))
367 (while (search-forward-regexp
368 "\\\\\\(include\\|input\\|verbatiminput\\|bibliography\\)\
53c4fe47 369\[ \t]*{\\([^}\n]+\\)}"
a53c647b 370 nil t)
53c4fe47
SM
371 (push (cons (concat "<<" (buffer-substring-no-properties
372 (match-beginning 2)
373 (match-end 2))
374 (if (= (char-after (match-beginning 1)) ?b)
375 ".bbl"
376 ".tex"))
377 (match-beginning 0))
378 menu))
a53c647b
RS
379
380 ;; Look for \frontmatter, \mainmatter, \backmatter, and \appendix.
381 (goto-char (point-min))
53c4fe47
SM
382 (while (search-forward-regexp metasection-regexp nil t)
383 (push (cons "--" (match-beginning 0)) menu))
a53c647b
RS
384
385 ;; Sort in increasing buffer position order.
386 (sort menu (function (lambda (a b) (< (cdr a) (cdr b))))))))
53c4fe47
SM
387\f
388;;;;
389;;;; Outline support
390;;;;
391
392(defvar latex-outline-regexp
393 (concat "\\\\"
394 (regexp-opt (append latex-metasection-list
395 (mapcar 'car latex-section-alist)) t)))
396
397(defun latex-outline-level ()
398 (if (looking-at latex-outline-regexp)
399 (1+ (or (cdr (assoc (match-string 1) latex-section-alist)) -1))
400 1000))
401\f
402;;;;
403;;;; Font-Lock support
404;;;;
405
406;(defvar tex-font-lock-keywords
407; ;; Regexps updated with help from Ulrik Dickow <dickow@nbi.dk>.
408; '(("\\\\\\(begin\\|end\\|newcommand\\){\\([a-zA-Z0-9\\*]+\\)}"
409; 2 font-lock-function-name-face)
410; ("\\\\\\(cite\\|label\\|pageref\\|ref\\){\\([^} \t\n]+\\)}"
411; 2 font-lock-constant-face)
412; ;; It seems a bit dubious to use `bold' and `italic' faces since we might
413; ;; not be able to display those fonts.
414; ("{\\\\bf\\([^}]+\\)}" 1 'bold keep)
415; ("{\\\\\\(em\\|it\\|sl\\)\\([^}]+\\)}" 2 'italic keep)
416; ("\\\\\\([a-zA-Z@]+\\|.\\)" . font-lock-keyword-face)
417; ("^[ \t\n]*\\\\def[\\\\@]\\(\\w+\\)" 1 font-lock-function-name-face keep))
418; ;; Rewritten and extended for LaTeX2e by Ulrik Dickow <dickow@nbi.dk>.
419; '(("\\\\\\(begin\\|end\\|newcommand\\){\\([a-zA-Z0-9\\*]+\\)}"
420; 2 font-lock-function-name-face)
421; ("\\\\\\(cite\\|label\\|pageref\\|ref\\){\\([^} \t\n]+\\)}"
422; 2 font-lock-constant-face)
423; ("^[ \t]*\\\\def\\\\\\(\\(\\w\\|@\\)+\\)" 1 font-lock-function-name-face)
424; "\\\\\\([a-zA-Z@]+\\|.\\)"
425; ;; It seems a bit dubious to use `bold' and `italic' faces since we might
426; ;; not be able to display those fonts.
427; ;; LaTeX2e: \emph{This is emphasized}.
428; ("\\\\emph{\\([^}]+\\)}" 1 'italic keep)
429; ;; LaTeX2e: \textbf{This is bold}, \textit{...}, \textsl{...}
430; ("\\\\text\\(\\(bf\\)\\|it\\|sl\\){\\([^}]+\\)}"
431; 3 (if (match-beginning 2) 'bold 'italic) keep)
432; ;; Old-style bf/em/it/sl. Stop at `\\' and un-escaped `&', for tables.
433; ("\\\\\\(\\(bf\\)\\|em\\|it\\|sl\\)\\>\\(\\([^}&\\]\\|\\\\[^\\]\\)+\\)"
434; 3 (if (match-beginning 2) 'bold 'italic) keep))
435
436;; Rewritten with the help of Alexandra Bac <abac@welcome.disi.unige.it>.
437(defconst tex-font-lock-keywords-1
438 (eval-when-compile
439 (let* (;; Names of commands whose arg should be fontified as heading, etc.
440 (headings (regexp-opt
441 '("title" "begin" "end" "chapter" "part"
442 "section" "subsection" "subsubsection"
443 "paragraph" "subparagraph" "subsubparagraph"
7afecb99
SM
444 "newcommand" "renewcommand" "providecommand"
445 "newenvironment" "renewenvironment"
446 "newtheorem" "renewtheorem")
53c4fe47
SM
447 t))
448 (variables (regexp-opt
449 '("newcounter" "newcounter*" "setcounter" "addtocounter"
450 "setlength" "addtolength" "settowidth")
451 t))
452 (includes (regexp-opt
453 '("input" "include" "includeonly" "bibliography"
454 "epsfig" "psfig" "epsf" "nofiles" "usepackage"
15ca8de7 455 "documentstyle" "documentclass" "verbatiminput"
53c4fe47
SM
456 "includegraphics" "includegraphics*")
457 t))
458 ;; Miscellany.
459 (slash "\\\\")
15ca8de7
SM
460 (opt " *\\(\\[[^]]*\\] *\\)*")
461 ;; This would allow highlighting \newcommand\CMD but requires
462 ;; adapting subgroup numbers below.
463 ;; (arg "\\(?:{\\(\\(?:[^{}\\]+\\|\\\\.\\|{[^}]*}\\)+\\)\\|\\\\[a-z*]+\\)"))
1598a961 464 (arg "{\\(\\(?:[^{}\\]+\\|\\\\.\\|{[^}]*}\\)+\\)"))
53c4fe47 465 (list
95a045bd
SM
466 ;; display $$ math $$
467 ;; We only mark the match between $$ and $$ because the $$ delimiters
468 ;; themselves have already been marked (along with $..$) by syntactic
469 ;; fontification. Also this is done at the very beginning so as to
470 ;; interact with the other keywords in the same way as $...$ does.
471 (list "\\$\\$\\([^$]+\\)\\$\\$" 1 'tex-math-face)
53c4fe47
SM
472 ;; Heading args.
473 (list (concat slash headings "\\*?" opt arg)
bdbd9606
SM
474 ;; If ARG ends up matching too much (if the {} don't match, f.ex)
475 ;; jit-lock will do funny things: when updating the buffer
476 ;; the re-highlighting is only done locally so it will just
477 ;; match the local line, but defer-contextually will
478 ;; match more lines at a time, so ARG will end up matching
479 ;; a lot more, which might suddenly include a comment
480 ;; so you get things highlighted bold when you type them
481 ;; but they get turned back to normal a little while later
482 ;; because "there's already a face there".
483 ;; Using `keep' works around this un-intuitive behavior as well
15ca8de7
SM
484 ;; as improves the behavior in the very rare case where you do
485 ;; have a comment in ARG.
bdbd9606 486 3 'font-lock-function-name-face 'keep)
7afecb99
SM
487 (list (concat slash "\\(?:provide\\|\\(?:re\\)?new\\)command\\** *\\(\\\\[A-Za-z@]+\\)")
488 1 'font-lock-function-name-face 'keep)
53c4fe47 489 ;; Variable args.
15ca8de7 490 (list (concat slash variables " *" arg) 2 'font-lock-variable-name-face)
53c4fe47
SM
491 ;; Include args.
492 (list (concat slash includes opt arg) 3 'font-lock-builtin-face)
493 ;; Definitions. I think.
15ca8de7 494 '("^[ \t]*\\\\def *\\\\\\(\\(\\w\\|@\\)+\\)"
bdbd9606 495 1 font-lock-function-name-face))))
53c4fe47
SM
496 "Subdued expressions to highlight in TeX modes.")
497
498(defconst tex-font-lock-keywords-2
499 (append tex-font-lock-keywords-1
500 (eval-when-compile
501 (let* (;;
502 ;; Names of commands whose arg should be fontified with fonts.
1598a961 503 (bold (regexp-opt '("textbf" "textsc" "textup"
53c4fe47 504 "boldsymbol" "pmb") t))
1598a961 505 (italic (regexp-opt '("textit" "textsl" "emph") t))
a3d80d4a
SM
506 ;; FIXME: unimplemented yet.
507 ;; (type (regexp-opt '("texttt" "textmd" "textrm" "textsf") t))
53c4fe47
SM
508 ;;
509 ;; Names of commands whose arg should be fontified as a citation.
510 (citations (regexp-opt
511 '("label" "ref" "pageref" "vref" "eqref"
15ca8de7 512 "cite" "nocite" "index" "glossary" "bibitem"
1598a961
SM
513 ;; These are text, rather than citations.
514 ;; "caption" "footnote" "footnotemark" "footnotetext"
515 )
53c4fe47
SM
516 t))
517 ;;
518 ;; Names of commands that should be fontified.
1b741d9e
AS
519 (specials-1 (regexp-opt '("\\" "\\*") t)) ;; "-"
520 (specials-2 (regexp-opt
521 '("linebreak" "nolinebreak" "pagebreak" "nopagebreak"
522 "newline" "newpage" "clearpage" "cleardoublepage"
523 "displaybreak" "allowdisplaybreaks"
524 "enlargethispage") t))
53c4fe47
SM
525 (general "\\([a-zA-Z@]+\\**\\|[^ \t\n]\\)")
526 ;;
527 ;; Miscellany.
528 (slash "\\\\")
15ca8de7 529 (opt " *\\(\\[[^]]*\\] *\\)*")
7afecb99 530 (args "\\(\\(?:[^{}&\\]+\\|\\\\.\\|{[^}]*}\\)+\\)")
1598a961 531 (arg "{\\(\\(?:[^{}\\]+\\|\\\\.\\|{[^}]*}\\)+\\)"))
53c4fe47
SM
532 (list
533 ;;
534 ;; Citation args.
535 (list (concat slash citations opt arg) 3 'font-lock-constant-face)
536 ;;
15ca8de7 537 ;; Text between `` quotes ''.
95a045bd 538 (cons (concat (regexp-opt `("``" "\"<" "\"`" "<<" "«") t)
7abc9add 539 "[^'\">{]+" ;a bit pessimistic
95a045bd 540 (regexp-opt `("''" "\">" "\"'" ">>" "»") t))
15ca8de7
SM
541 'font-lock-string-face)
542 ;;
53c4fe47 543 ;; Command names, special and general.
1b741d9e
AS
544 (cons (concat slash specials-1) 'font-lock-warning-face)
545 (list (concat "\\(" slash specials-2 "\\)\\([^a-zA-Z@]\\|\\'\\)")
546 1 'font-lock-warning-face)
53c4fe47
SM
547 (concat slash general)
548 ;;
549 ;; Font environments. It seems a bit dubious to use `bold' etc. faces
550 ;; since we might not be able to display those fonts.
15ca8de7
SM
551 (list (concat slash bold " *" arg) 2 '(quote bold) 'append)
552 (list (concat slash italic " *" arg) 2 '(quote italic) 'append)
1598a961 553 ;; (list (concat slash type arg) 2 '(quote bold-italic) 'append)
53c4fe47
SM
554 ;;
555 ;; Old-style bf/em/it/sl. Stop at `\\' and un-escaped `&', for tables.
7afecb99
SM
556 (list (concat "\\\\\\(em\\|it\\|sl\\)\\>" args)
557 2 '(quote italic) 'append)
558 ;; This is separate from the previous one because of cases like
559 ;; {\em foo {\bf bar} bla} where both match.
560 (list (concat "\\\\bf\\>" args) 1 '(quote bold) 'append)))))
53c4fe47
SM
561 "Gaudy expressions to highlight in TeX modes.")
562
7afecb99
SM
563(defun tex-font-lock-suscript (pos)
564 (unless (or (memq (get-text-property pos 'face)
565 '(font-lock-constant-face font-lock-builtin-face
566 font-lock-comment-face tex-verbatim-face))
567 ;; Check for backslash quoting
568 (let ((odd nil)
569 (pos pos))
570 (while (eq (char-before pos) ?\\)
571 (setq pos (1- pos) odd (not odd)))
572 odd))
573 (if (eq (char-after pos) ?_)
574 '(face subscript display (raise -0.3))
575 '(face superscript display (raise +0.3)))))
576
577(defconst tex-font-lock-keywords-3
578 (append tex-font-lock-keywords-2
579 (eval-when-compile
580 (let ((general "\\([a-zA-Z@]+\\|[^ \t\n]\\)")
581 (slash "\\\\")
582 ;; This is not the same regexp as before: it has a `+' removed.
583 ;; The + makes the matching faster in the above cases (where we can
584 ;; exit as soon as the match fails) but would make this matching
585 ;; degenerate to nasty complexity (because we try to match the
586 ;; closing brace, which forces trying all matching combinations).
587 (arg "{\\(?:[^{}\\]\\|\\\\.\\|{[^}]*}\\)*"))
588 `((,(concat "[_^] *\\([^\n\\{}]\\|" slash general "\\|" arg "}\\)")
589 (1 (tex-font-lock-suscript (match-beginning 0))
590 append))))))
591 "Experimental expressions to highlight in TeX modes.")
592
53c4fe47
SM
593(defvar tex-font-lock-keywords tex-font-lock-keywords-1
594 "Default expressions to highlight in TeX modes.")
0fb4f245 595
7afecb99
SM
596(defvar tex-verbatim-environments
597 '("verbatim" "verbatim*"))
598
599(defvar tex-font-lock-syntactic-keywords
600 (let ((verbs (regexp-opt tex-verbatim-environments t)))
601 `((,(concat "^\\\\begin *{" verbs "}.*\\(\n\\)") 2 "|")
602 (,(concat "^\\\\end *{" verbs "}\\(.?\\)") 2
603 (unless (<= (match-beginning 0) (point-min))
604 (put-text-property (1- (match-beginning 0)) (match-beginning 0)
605 'syntax-table (string-to-syntax "|"))
606 "<"))
607 ;; ("^\\(\\\\\\)begin *{comment}" 1 "< b")
608 ;; ("^\\\\end *{comment}.*\\(\n\\)" 1 "> b")
609 ("\\\\verb\\**\\([^a-z@*]\\)" 1 "\""))))
610
611(defun tex-font-lock-unfontify-region (beg end)
612 (font-lock-default-unfontify-region beg end)
613 (while (< beg end)
614 (let ((next (next-single-property-change beg 'display nil end))
615 (prop (get-text-property beg 'display)))
616 (if (and (eq (car-safe prop) 'raise)
617 (member (car-safe (cdr prop)) '(-0.3 +0.3))
618 (null (cddr prop)))
619 (put-text-property beg next 'display nil))
620 (setq beg next))))
621
622(defface superscript
623 '((t :height 0.8)) ;; :raise 0.3
624 "Face used for superscripts.")
625(defface subscript
626 '((t :height 0.8)) ;; :raise -0.3
627 "Face used for subscripts.")
bdbd9606
SM
628
629(defface tex-math-face
630 '((t :inherit font-lock-string-face))
631 "Face used to highlight TeX math expressions.")
632(defvar tex-math-face 'tex-math-face)
7afecb99
SM
633(defface tex-verbatim-face
634 ;; '((t :inherit font-lock-string-face))
635 '((t :family "courier"))
636 "Face used to highlight TeX verbatim environments.")
637(defvar tex-verbatim-face 'tex-verbatim-face)
bdbd9606
SM
638
639;; Use string syntax but math face for $...$.
640(defun tex-font-lock-syntactic-face-function (state)
7afecb99
SM
641 (let ((char (nth 3 state)))
642 (cond
643 ((not char) font-lock-comment-face)
644 ((eq char ?$) tex-math-face)
645 (t
646 (when (char-valid-p char)
647 ;; This is a \verb?...? construct. Let's find the end and mark it.
648 (save-excursion
649 (skip-chars-forward (string ?^ char)) ;; Use `end' ?
650 (when (eq (char-syntax (preceding-char)) ?/)
651 (put-text-property (1- (point)) (point) 'syntax-table '(1)))
652 (unless (eobp)
653 (put-text-property (point) (1+ (point)) 'syntax-table '(7)))))
654 tex-verbatim-face))))
bdbd9606 655
53c4fe47 656\f
869bff31 657(defun tex-define-common-keys (keymap)
81c735c0 658 "Define the keys that we want defined both in TeX mode and in the TeX shell."
869bff31 659 (define-key keymap "\C-c\C-k" 'tex-kill-job)
660 (define-key keymap "\C-c\C-l" 'tex-recenter-output-buffer)
661 (define-key keymap "\C-c\C-q" 'tex-show-print-queue)
662 (define-key keymap "\C-c\C-p" 'tex-print)
663 (define-key keymap "\C-c\C-v" 'tex-view)
62a24cb5
RS
664
665 (define-key keymap [menu-bar tex] (cons "TeX" (make-sparse-keymap "TeX")))
666
bdbd9606
SM
667 (define-key keymap [menu-bar tex tex-kill-job]
668 '(menu-item "Tex Kill" tex-kill-job :enable (tex-shell-running)))
cf6d6e8a 669 (define-key keymap [menu-bar tex tex-recenter-output-buffer]
bdbd9606
SM
670 '(menu-item "Tex Recenter" tex-recenter-output-buffer
671 :enable (get-buffer "*tex-shell*")))
62a24cb5
RS
672 (define-key keymap [menu-bar tex tex-show-print-queue]
673 '("Show Print Queue" . tex-show-print-queue))
cf6d6e8a 674 (define-key keymap [menu-bar tex tex-alt-print]
bdbd9606
SM
675 '(menu-item "Tex Print (alt printer)" tex-alt-print
676 :enable (stringp tex-print-file)))
677 (define-key keymap [menu-bar tex tex-print]
678 '(menu-item "Tex Print" tex-print :enable (stringp tex-print-file)))
679 (define-key keymap [menu-bar tex tex-view]
680 '(menu-item "Tex View" tex-view :enable (stringp tex-print-file))))
681
682(defvar tex-mode-map
683 (let ((map (make-sparse-keymap)))
15ca8de7 684 (set-keymap-parent map text-mode-map)
bdbd9606
SM
685 (tex-define-common-keys map)
686 (define-key map "\"" 'tex-insert-quote)
687 (define-key map "(" 'skeleton-pair-insert-maybe)
688 (define-key map "{" 'skeleton-pair-insert-maybe)
689 (define-key map "[" 'skeleton-pair-insert-maybe)
690 (define-key map "$" 'skeleton-pair-insert-maybe)
691 (define-key map "\n" 'tex-terminate-paragraph)
692 (define-key map "\M-\r" 'latex-insert-item)
693 (define-key map "\C-c}" 'up-list)
694 (define-key map "\C-c{" 'tex-insert-braces)
695 (define-key map "\C-c\C-r" 'tex-region)
696 (define-key map "\C-c\C-b" 'tex-buffer)
697 (define-key map "\C-c\C-f" 'tex-file)
75035a80 698 (define-key map "\C-c\C-c" 'tex-compile)
bdbd9606 699 (define-key map "\C-c\C-i" 'tex-bibtex-file)
7afecb99
SM
700 (define-key map "\C-c\C-o" 'latex-insert-block)
701 (define-key map "\C-c\C-e" 'latex-close-block)
bdbd9606
SM
702 (define-key map "\C-c\C-u" 'tex-goto-last-unclosed-latex-block)
703 (define-key map "\C-c\C-m" 'tex-feed-input)
704 (define-key map [(control return)] 'tex-feed-input)
705 (define-key map [menu-bar tex tex-bibtex-file]
706 '("BibTeX File" . tex-bibtex-file))
707 (define-key map [menu-bar tex tex-validate-region]
708 '(menu-item "Validate Region" tex-validate-region :enable mark-active))
709 (define-key map [menu-bar tex tex-validate-buffer]
710 '("Validate Buffer" . tex-validate-buffer))
711 (define-key map [menu-bar tex tex-region]
712 '(menu-item "TeX Region" tex-region :enable mark-active))
713 (define-key map [menu-bar tex tex-buffer]
714 '("TeX Buffer" . tex-buffer))
715 (define-key map [menu-bar tex tex-file] '("TeX File" . tex-file))
716 map)
15ca8de7
SM
717 "Keymap shared by TeX modes.")
718
719(defvar latex-mode-map
720 (let ((map (make-sparse-keymap)))
721 (set-keymap-parent map tex-mode-map)
a3d80d4a 722 (define-key map "\C-c\C-s" 'latex-split-block)
15ca8de7
SM
723 map)
724 "Keymap for `latex-mode'. See also `tex-mode-map'.")
725
726(defvar plain-tex-mode-map
727 (let ((map (make-sparse-keymap)))
728 (set-keymap-parent map tex-mode-map)
729 map)
730 "Keymap for `plain-tex-mode'. See also `tex-mode-map'.")
cf6d6e8a 731
d6709b80
SM
732(defvar tex-shell-map
733 (let ((m (make-sparse-keymap)))
734 (set-keymap-parent m shell-mode-map)
735 (tex-define-common-keys m)
736 m)
81c735c0 737 "Keymap for the TeX shell.
dca5ea48 738Inherits `shell-mode-map' with a few additions.")
869bff31 739
6da9bbd6
RS
740(defvar tex-face-alist
741 '((bold . "{\\bf ")
742 (italic . "{\\it ")
743 (bold-italic . "{\\bi ") ; hypothetical
744 (underline . "\\underline{")
745 (default . "{\\rm "))
746 "Alist of face and TeX font name for facemenu.")
747
748(defvar tex-latex-face-alist
749 `((italic . "{\\em ")
750 ,@tex-face-alist)
751 "Alist of face and LaTeX font name for facemenu.")
752
15ca8de7
SM
753;; This would be a lot simpler if we just used a regexp search,
754;; but then it would be too slow.
a3d80d4a 755(defun tex-guess-mode ()
d6709b80 756 (let ((mode tex-default-mode) slash comment)
869bff31 757 (save-excursion
758 (goto-char (point-min))
759 (while (and (setq slash (search-forward "\\" nil t))
760 (setq comment (let ((search-end (point)))
761 (save-excursion
762 (beginning-of-line)
763 (search-forward "%" search-end t))))))
bdbd9606
SM
764 (when (and slash (not comment))
765 (setq mode
766 (if (looking-at
767 (eval-when-compile
768 (concat
769 (regexp-opt '("documentstyle" "documentclass"
95a045bd 770 "begin" "subsection" "section"
bca7a08b
SM
771 "part" "chapter" "newcommand"
772 "renewcommand") 'words)
bdbd9606
SM
773 "\\|NeedsTeXFormat{LaTeX")))
774 (if (looking-at
775 "document\\(style\\|class\\)\\(\\[.*\\]\\)?{slides}")
776 'slitex-mode
777 'latex-mode)
778 'plain-tex-mode))))
d6709b80 779 (funcall mode)))
e4c8c838 780
a3d80d4a
SM
781;; `tex-mode' plays two roles: it's the parent of several sub-modes
782;; but it's also the function that chooses between those submodes.
783;; To tell the difference between those two cases where the function
784;; might be called, we check `delay-mode-hooks'.
a3d80d4a
SM
785(define-derived-mode tex-mode text-mode "generic-TeX"
786 (tex-common-initialization))
bca7a08b
SM
787;; We now move the function and define it again. This gives a warning
788;; in the byte-compiler :-( but it's difficult to avoid because
789;; `define-derived-mode' will necessarily define the function once
790;; and we need to define it a second time for `autoload' to get the
791;; proper docstring.
792(defalias 'tex-mode-internal (symbol-function 'tex-mode))
793;;;###autoload
794(defun tex-mode ()
795 "Major mode for editing files of input for TeX, LaTeX, or SliTeX.
a3d80d4a
SM
796Tries to determine (by looking at the beginning of the file) whether
797this file is for plain TeX, LaTeX, or SliTeX and calls `plain-tex-mode',
798`latex-mode', or `slitex-mode', respectively. If it cannot be determined,
799such as if there are no commands in the file, the value of `tex-default-mode'
800says which mode to use."
bca7a08b
SM
801 (interactive)
802 (if delay-mode-hooks
803 ;; We're called from one of the children already.
804 (tex-mode-internal)
805 (tex-guess-mode)))
a3d80d4a 806
6503cec3 807;;;###autoload
31e1d920 808(defalias 'TeX-mode 'tex-mode)
6503cec3 809;;;###autoload
c3ce7bf4
RS
810(defalias 'plain-TeX-mode 'plain-tex-mode)
811;;;###autoload
31e1d920 812(defalias 'LaTeX-mode 'latex-mode)
869bff31 813
7229064d 814;;;###autoload
a3d80d4a 815(define-derived-mode plain-tex-mode tex-mode "TeX"
869bff31 816 "Major mode for editing files of input for plain TeX.
817Makes $ and } display the characters they match.
818Makes \" insert `` when it seems to be the beginning of a quotation,
819and '' when it appears to be the end; it inserts \" only after a \\.
820
821Use \\[tex-region] to run TeX on the current region, plus a \"header\"
822copied from the top of the file (containing macro definitions, etc.),
823running TeX under a special subshell. \\[tex-buffer] does the whole buffer.
824\\[tex-file] saves the buffer and then processes the file.
825\\[tex-print] prints the .dvi file made by any of these.
826\\[tex-view] previews the .dvi file made by any of these.
827\\[tex-bibtex-file] runs bibtex on the file of the current buffer.
828
e6b0b773 829Use \\[tex-validate-buffer] to check buffer for paragraphs containing
869bff31 830mismatched $'s or braces.
831
832Special commands:
15ca8de7 833\\{plain-tex-mode-map}
869bff31 834
835Mode variables:
836tex-run-command
837 Command string used by \\[tex-region] or \\[tex-buffer].
838tex-directory
839 Directory in which to create temporary files for TeX jobs
840 run by \\[tex-region] or \\[tex-buffer].
841tex-dvi-print-command
842 Command string used by \\[tex-print] to print a .dvi file.
528415e7
RS
843tex-alt-dvi-print-command
844 Alternative command string used by \\[tex-print] (when given a prefix
845 argument) to print a .dvi file.
869bff31 846tex-dvi-view-command
847 Command string used by \\[tex-view] to preview a .dvi file.
848tex-show-queue-command
849 Command string used by \\[tex-show-print-queue] to show the print
850 queue that \\[tex-print] put your job on.
851
81c735c0
RS
852Entering Plain-tex mode runs the hook `text-mode-hook', then the hook
853`tex-mode-hook', and finally the hook `plain-tex-mode-hook'. When the
854special subshell is initiated, the hook `tex-shell-hook' is run."
a3d80d4a
SM
855 (set (make-local-variable 'tex-command) tex-run-command)
856 (set (make-local-variable 'tex-start-of-header) "%\\*\\*start of header")
857 (set (make-local-variable 'tex-end-of-header) "%\\*\\*end of header")
858 (set (make-local-variable 'tex-trailer) "\\bye\n"))
869bff31 859
7229064d 860;;;###autoload
a3d80d4a 861(define-derived-mode latex-mode tex-mode "LaTeX"
869bff31 862 "Major mode for editing files of input for LaTeX.
863Makes $ and } display the characters they match.
864Makes \" insert `` when it seems to be the beginning of a quotation,
865and '' when it appears to be the end; it inserts \" only after a \\.
866
867Use \\[tex-region] to run LaTeX on the current region, plus the preamble
868copied from the top of the file (containing \\documentstyle, etc.),
869running LaTeX under a special subshell. \\[tex-buffer] does the whole buffer.
870\\[tex-file] saves the buffer and then processes the file.
871\\[tex-print] prints the .dvi file made by any of these.
872\\[tex-view] previews the .dvi file made by any of these.
873\\[tex-bibtex-file] runs bibtex on the file of the current buffer.
874
e6b0b773 875Use \\[tex-validate-buffer] to check buffer for paragraphs containing
869bff31 876mismatched $'s or braces.
877
878Special commands:
15ca8de7 879\\{latex-mode-map}
869bff31 880
881Mode variables:
882latex-run-command
883 Command string used by \\[tex-region] or \\[tex-buffer].
884tex-directory
885 Directory in which to create temporary files for LaTeX jobs
886 run by \\[tex-region] or \\[tex-buffer].
887tex-dvi-print-command
888 Command string used by \\[tex-print] to print a .dvi file.
528415e7
RS
889tex-alt-dvi-print-command
890 Alternative command string used by \\[tex-print] (when given a prefix
891 argument) to print a .dvi file.
869bff31 892tex-dvi-view-command
893 Command string used by \\[tex-view] to preview a .dvi file.
894tex-show-queue-command
895 Command string used by \\[tex-show-print-queue] to show the print
896 queue that \\[tex-print] put your job on.
897
bed1b0c8 898Entering Latex mode runs the hook `text-mode-hook', then
81c735c0
RS
899`tex-mode-hook', and finally `latex-mode-hook'. When the special
900subshell is initiated, `tex-shell-hook' is run."
a3d80d4a
SM
901 (set (make-local-variable 'tex-command) latex-run-command)
902 (set (make-local-variable 'tex-start-of-header)
903 "\\\\document\\(style\\|class\\)")
904 (set (make-local-variable 'tex-end-of-header) "\\\\begin\\s-*{document}")
905 (set (make-local-variable 'tex-trailer) "\\end\\s-*{document}\n")
ab2c9f54
RS
906 ;; A line containing just $$ is treated as a paragraph separator.
907 ;; A line starting with $$ starts a paragraph,
908 ;; but does not separate paragraphs if it has more stuff on it.
d6709b80 909 (setq paragraph-start
a3d80d4a 910 (concat "[ \t]*\\(\\$\\$\\|"
d6709b80
SM
911 "\\\\[][]\\|"
912 "\\\\" (regexp-opt (append
913 (mapcar 'car latex-section-alist)
914 '("begin" "label" "end"
915 "item" "bibitem" "newline" "noindent"
916 "newpage" "footnote" "marginpar"
917 "parbox" "caption")) t)
918 "\\>\\|\\\\[a-z]*" (regexp-opt '("space" "skip" "page") t)
dd459839 919 "\\>\\)"))
d6709b80 920 (setq paragraph-separate
dd459839 921 (concat "[\f%]\\|[ \t]*\\($\\|"
d6709b80
SM
922 "\\\\[][]\\|"
923 "\\\\" (regexp-opt (append
924 (mapcar 'car latex-section-alist)
925 '("begin" "label" "end" )) t)
926 "\\>\\|\\\\\\(" (regexp-opt '("item" "bibitem" "newline"
927 "noindent" "newpage" "footnote"
928 "marginpar" "parbox" "caption"))
dd459839
SM
929 "\\|\\$\\$\\|[a-z]*\\(space\\|skip\\|page[a-z]*\\)"
930 "\\>\\)[ \t]*\\($\\|%\\)\\)"))
d6709b80
SM
931 (set (make-local-variable 'imenu-create-index-function)
932 'latex-imenu-create-index)
933 (set (make-local-variable 'tex-face-alist) tex-latex-face-alist)
95a045bd 934 (add-hook 'fill-nobreak-predicate 'latex-fill-nobreak-predicate nil t)
ea590e1c 935 (set (make-local-variable 'indent-line-function) 'latex-indent)
dd459839 936 (set (make-local-variable 'fill-indent-according-to-mode) t)
d6709b80
SM
937 (set (make-local-variable 'outline-regexp) latex-outline-regexp)
938 (set (make-local-variable 'outline-level) 'latex-outline-level)
53c4fe47 939 (set (make-local-variable 'forward-sexp-function) 'latex-forward-sexp)
a3d80d4a 940 (set (make-local-variable 'skeleton-end-hook) nil))
869bff31 941
bd2f2323 942;;;###autoload
d6709b80 943(define-derived-mode slitex-mode latex-mode "SliTeX"
869bff31 944 "Major mode for editing files of input for SliTeX.
945Makes $ and } display the characters they match.
946Makes \" insert `` when it seems to be the beginning of a quotation,
947and '' when it appears to be the end; it inserts \" only after a \\.
948
949Use \\[tex-region] to run SliTeX on the current region, plus the preamble
950copied from the top of the file (containing \\documentstyle, etc.),
951running SliTeX under a special subshell. \\[tex-buffer] does the whole buffer.
952\\[tex-file] saves the buffer and then processes the file.
953\\[tex-print] prints the .dvi file made by any of these.
954\\[tex-view] previews the .dvi file made by any of these.
955\\[tex-bibtex-file] runs bibtex on the file of the current buffer.
956
e6b0b773 957Use \\[tex-validate-buffer] to check buffer for paragraphs containing
869bff31 958mismatched $'s or braces.
959
960Special commands:
15ca8de7 961\\{slitex-mode-map}
869bff31 962
963Mode variables:
964slitex-run-command
965 Command string used by \\[tex-region] or \\[tex-buffer].
966tex-directory
967 Directory in which to create temporary files for SliTeX jobs
968 run by \\[tex-region] or \\[tex-buffer].
969tex-dvi-print-command
970 Command string used by \\[tex-print] to print a .dvi file.
528415e7
RS
971tex-alt-dvi-print-command
972 Alternative command string used by \\[tex-print] (when given a prefix
973 argument) to print a .dvi file.
869bff31 974tex-dvi-view-command
975 Command string used by \\[tex-view] to preview a .dvi file.
976tex-show-queue-command
977 Command string used by \\[tex-show-print-queue] to show the print
978 queue that \\[tex-print] put your job on.
979
81c735c0
RS
980Entering SliTeX mode runs the hook `text-mode-hook', then the hook
981`tex-mode-hook', then the hook `latex-mode-hook', and finally the hook
982`slitex-mode-hook'. When the special subshell is initiated, the hook
983`tex-shell-hook' is run."
869bff31 984 (setq tex-command slitex-run-command)
d6709b80 985 (setq tex-start-of-header "\\\\documentstyle{slides}\\|\\\\documentclass{slides}"))
869bff31 986
987(defun tex-common-initialization ()
822eddf4 988 ;; Regexp isearch should accept newline and formfeed as whitespace.
d6709b80 989 (set (make-local-variable 'search-whitespace-regexp) "[ \t\r\n\f]+")
64db2461 990 ;; A line containing just $$ is treated as a paragraph separator.
d6709b80
SM
991 (set (make-local-variable 'paragraph-start)
992 "[ \t]*$\\|[\f\\\\%]\\|[ \t]*\\$\\$")
ab2c9f54
RS
993 ;; A line starting with $$ starts a paragraph,
994 ;; but does not separate paragraphs if it has more stuff on it.
d6709b80
SM
995 (set (make-local-variable 'paragraph-separate)
996 "[ \t]*$\\|[\f\\\\%]\\|[ \t]*\\$\\$[ \t]*$")
997 (set (make-local-variable 'comment-start) "%")
998 (set (make-local-variable 'comment-add) 1)
999 (set (make-local-variable 'comment-start-skip)
5ae0d697 1000 "\\(\\(^\\|[^\\\n]\\)\\(\\\\\\\\\\)*\\)\\(%+ *\\)")
d6709b80
SM
1001 (set (make-local-variable 'parse-sexp-ignore-comments) t)
1002 (set (make-local-variable 'compare-windows-whitespace)
1003 'tex-categorize-whitespace)
1004 (set (make-local-variable 'facemenu-add-face-function)
1005 (lambda (face end)
1006 (let ((face-text (cdr (assq face tex-face-alist))))
1007 (if face-text
1008 face-text
1009 (error "Face %s not configured for %s mode" face mode-name)))))
1010 (set (make-local-variable 'facemenu-end-add-face) "}")
1011 (set (make-local-variable 'facemenu-remove-face-function) t)
1012 (set (make-local-variable 'font-lock-defaults)
7afecb99
SM
1013 '((tex-font-lock-keywords tex-font-lock-keywords-1
1014 tex-font-lock-keywords-2 tex-font-lock-keywords-3)
d6709b80
SM
1015 nil nil ((?$ . "\"")) nil
1016 ;; Who ever uses that anyway ???
bdbd9606
SM
1017 (font-lock-mark-block-function . mark-paragraph)
1018 (font-lock-syntactic-face-function
7afecb99
SM
1019 . tex-font-lock-syntactic-face-function)
1020 (font-lock-unfontify-region-function
1021 . tex-font-lock-unfontify-region)
1022 (font-lock-syntactic-keywords
1023 . tex-font-lock-syntactic-keywords)
1024 (parse-sexp-lookup-properties . t)))
95a045bd
SM
1025 ;; TABs in verbatim environments don't do what you think.
1026 (set (make-local-variable 'indent-tabs-mode) nil)
7afecb99 1027 ;; Other vars that should be buffer-local.
869bff31 1028 (make-local-variable 'tex-command)
1029 (make-local-variable 'tex-start-of-header)
1030 (make-local-variable 'tex-end-of-header)
1031 (make-local-variable 'tex-trailer))
1032
869bff31 1033(defun tex-categorize-whitespace (backward-limit)
1034 ;; compare-windows-whitespace is set to this.
1035 ;; This is basically a finite-state machine.
1036 ;; Returns a symbol telling how TeX would treat
1037 ;; the whitespace we are looking at: null, space, or par.
1038 (let ((category 'null)
1039 (not-finished t))
1040 (skip-chars-backward " \t\n\f" backward-limit)
1041 (while not-finished
1042 (cond ((looking-at "[ \t]+")
1043 (goto-char (match-end 0))
2be5fefb 1044 (if (eq category 'null)
869bff31 1045 (setq category 'space)))
1046 ((looking-at "\n")
2be5fefb 1047 (cond ((eq category 'newline)
869bff31 1048 (setq category 'par)
1049 (setq not-finished nil))
1050 (t
1051 (setq category 'newline) ;a strictly internal state
1052 (goto-char (match-end 0)))))
1053 ((looking-at "\f+")
1054 (setq category 'par)
1055 (setq not-finished nil))
1056 (t
1057 (setq not-finished nil))))
1058 (skip-chars-forward " \t\n\f")
2be5fefb 1059 (if (eq category 'newline)
869bff31 1060 'space ;TeX doesn't distinguish
1061 category)))
1062
1063(defun tex-insert-quote (arg)
1064 "Insert the appropriate quote marks for TeX.
08348502
RS
1065Inserts the value of `tex-open-quote' (normally ``) or `tex-close-quote'
1066\(normally '') depending on the context. With prefix argument, always
869bff31 1067inserts \" characters."
528415e7 1068 (interactive "*P")
95a045bd
SM
1069 (if (or arg (memq (char-syntax (preceding-char)) '(?/ ?\\))
1070 (eq (get-text-property (point) 'face) 'tex-verbatim-face)
1071 (save-excursion
1072 (backward-char (length tex-open-quote))
1073 (when (or (looking-at (regexp-quote tex-open-quote))
1074 (looking-at (regexp-quote tex-close-quote)))
1075 (delete-char (length tex-open-quote))
1076 t)))
869bff31 1077 (self-insert-command (prefix-numeric-value arg))
95a045bd
SM
1078 (insert (if (memq (char-syntax (preceding-char)) '(?\( ?> ?\ ))
1079 tex-open-quote tex-close-quote))))
869bff31 1080
e6b0b773
MR
1081(defun tex-validate-buffer ()
1082 "Check current buffer for paragraphs containing mismatched braces or $s.
bbd93e41 1083Their positions are recorded in the buffer `*Occur*'.
e6b0b773
MR
1084To find a particular invalidity from `*Occur*', switch to that buffer
1085and type C-c C-c or click with mouse-2
1086on the line for the invalidity you want to see."
869bff31 1087 (interactive)
bbd93e41
RS
1088 (let ((buffer (current-buffer))
1089 (prevpos (point-min))
e6b0b773
MR
1090 (linenum nil)
1091 (num-matches 0))
bbd93e41
RS
1092 (with-output-to-temp-buffer "*Occur*"
1093 (princ "Mismatches:\n")
a3d80d4a 1094 (with-current-buffer standard-output
bbd93e41 1095 (occur-mode)
52ab062c
CW
1096 ;; This won't actually work...Really, this whole thing should
1097 ;; be rewritten instead of being a hack on top of occur.
1098 (setq occur-revert-arguments (list nil 0 (list buffer))))
bbd93e41
RS
1099 (save-excursion
1100 (goto-char (point-max))
52ab062c 1101 (while (and (not (bobp)))
710a0f53
KH
1102 (let ((end (point))
1103 prev-end)
bbd93e41 1104 ;; Scan the previous paragraph for invalidities.
710a0f53
KH
1105 (if (search-backward "\n\n" nil t)
1106 (progn
1107 (setq prev-end (point))
1108 (forward-char 2))
1109 (goto-char (setq prev-end (point-min))))
869bff31 1110 (or (tex-validate-region (point) end)
a3d80d4a 1111 (let* ((end (line-beginning-position 2))
bbd93e41
RS
1112 start tem)
1113 (beginning-of-line)
1114 (setq start (point))
1115 ;; Keep track of line number as we scan,
1116 ;; in a cumulative fashion.
1117 (if linenum
1118 (setq linenum (- linenum (count-lines prevpos (point))))
1119 (setq linenum (1+ (count-lines 1 start))))
1120 (setq prevpos (point))
bed1b0c8 1121 ;; Mention this mismatch in *Occur*.
bbd93e41 1122 ;; Since we scan from end of buffer to beginning,
e6b0b773 1123 ;; add each mismatch at the beginning of *Occur*.
bbd93e41
RS
1124 (save-excursion
1125 (setq tem (point-marker))
1126 (set-buffer standard-output)
1127 (goto-char (point-min))
1128 ;; Skip "Mismatches:" header line.
1129 (forward-line 1)
e6b0b773 1130 (setq num-matches (1+ num-matches))
bbd93e41 1131 (insert-buffer-substring buffer start end)
e6b0b773
MR
1132 (let (text-beg (text-end (point-marker)))
1133 (forward-char (- start end))
1134 (setq text-beg (point-marker))
1135 (insert (format "%3d: " linenum))
a865de85
EZ
1136 (add-text-properties
1137 text-beg (- text-end 1)
1138 '(mouse-face highlight
1139 help-echo "mouse-2: go to this invalidity"))
1598a961 1140 (put-text-property text-beg (- text-end 1)
52ab062c 1141 'occur-target tem)))))
710a0f53 1142 (goto-char prev-end))))
bdbd9606 1143 (with-current-buffer standard-output
e6b0b773 1144 (if (eq num-matches 0)
bbd93e41
RS
1145 (insert "None!\n"))
1146 (if (interactive-p)
e6b0b773 1147 (message "%d mismatches found" num-matches))))))
869bff31 1148
1149(defun tex-validate-region (start end)
1150 "Check for mismatched braces or $'s in region.
1151Returns t if no mismatches. Returns nil and moves point to suspect
1152area if a mismatch is found."
1153 (interactive "r")
1154 (let ((failure-point nil) (max-possible-sexps (- end start)))
1155 (save-excursion
1156 (condition-case ()
1157 (save-restriction
1158 (narrow-to-region start end)
2ed2806c 1159 ;; First check that the open and close parens balance in numbers.
869bff31 1160 (goto-char start)
e6b0b773 1161 (while (<= 0 (setq max-possible-sexps (1- max-possible-sexps)))
2ed2806c
KH
1162 (forward-sexp 1))
1163 ;; Now check that like matches like.
1164 (goto-char start)
1165 (while (progn (skip-syntax-forward "^(")
1166 (not (eobp)))
1167 (let ((match (matching-paren (following-char))))
1168 (save-excursion
1169 (forward-sexp 1)
1170 (or (= (preceding-char) match)
1171 (error "Mismatched parentheses"))))
1172 (forward-char 1)))
869bff31 1173 (error
bed1b0c8
RS
1174 (skip-syntax-forward " .>")
1175 (setq failure-point (point)))))
bdbd9606
SM
1176 (if failure-point (goto-char failure-point))
1177 (not failure-point)))
869bff31 1178
1179(defun tex-terminate-paragraph (inhibit-validation)
1180 "Insert two newlines, breaking a paragraph for TeX.
81c735c0 1181Check for mismatched braces or $s in paragraph being terminated.
869bff31 1182A prefix arg inhibits the checking."
528415e7 1183 (interactive "*P")
869bff31 1184 (or inhibit-validation
1185 (save-excursion
1186 (tex-validate-region
bed1b0c8
RS
1187 (save-excursion
1188 (search-backward "\n\n" nil 'move)
1189 (point))
1190 (point)))
869bff31 1191 (message "Paragraph being closed appears to contain a mismatch"))
1192 (insert "\n\n"))
1193
7afecb99 1194(define-skeleton tex-insert-braces
869bff31 1195 "Make a pair of braces and be poised to type inside of them."
7afecb99
SM
1196 nil
1197 ?\{ _ ?})
869bff31 1198
9bd4f69c
RS
1199;; This function is used as the value of fill-nobreak-predicate
1200;; in LaTeX mode. Its job is to prevent line-breaking inside
1201;; of a \verb construct.
1202(defun latex-fill-nobreak-predicate ()
7afecb99
SM
1203 (save-excursion
1204 (skip-chars-backward " ")
1205 ;; Don't break after \ since `\ ' has special meaning.
1206 (or (and (not (bobp)) (memq (char-syntax (char-before)) '(?\\ ?/)))
1207 (let ((opoint (point))
1208 inside)
1209 (beginning-of-line)
1210 (while (re-search-forward "\\\\verb\\(.\\)" opoint t)
1211 (unless (re-search-forward (regexp-quote (match-string 1)) opoint t)
1212 (setq inside t)))
1213 inside))))
9bd4f69c 1214
53c4fe47
SM
1215(defvar latex-block-default "enumerate")
1216
8084f5d8
SM
1217(defvar latex-block-args-alist
1218 '(("array" nil ?\{ (skeleton-read "[options]: ") ?\})
1219 ("tabular" nil ?\{ (skeleton-read "[options]: ") ?\}))
1220 "Skeleton element to use for arguments to particular environments.
1221Every element of the list has the form (NAME . SKEL-ELEM) where NAME is
1222the name of the environment and SKEL-ELEM is an element to use in
1223a skeleton (see `skeleton-insert').")
1224
1225(defvar latex-block-body-alist
1226 '(("enumerate" nil '(latex-insert-item) > _)
1227 ("itemize" nil '(latex-insert-item) > _)
1228 ("table" nil "\\caption{" > - "}" > \n _)
1229 ("figure" nil > _ \n "\\caption{" > _ "}" >))
1230 "Skeleton element to use for the body of particular environments.
1231Every element of the list has the form (NAME . SKEL-ELEM) where NAME is
1232the name of the environment and SKEL-ELEM is an element to use in
1233a skeleton (see `skeleton-insert').")
1234
15ca8de7 1235;; Like tex-insert-braces, but for LaTeX.
7afecb99
SM
1236(defalias 'tex-latex-block 'latex-insert-block)
1237(define-skeleton latex-insert-block
8a591d52 1238 "Create a matching pair of lines \\begin{NAME} and \\end{NAME} at point.
869bff31 1239Puts point on a blank line between them."
53c4fe47
SM
1240 (let ((choice (completing-read (format "LaTeX block name [%s]: "
1241 latex-block-default)
95a045bd 1242 (append latex-block-names
7afecb99 1243 latex-standard-block-names)
53c4fe47
SM
1244 nil nil nil nil latex-block-default)))
1245 (setq latex-block-default choice)
7afecb99 1246 (unless (or (member choice latex-standard-block-names)
53c4fe47
SM
1247 (member choice latex-block-names))
1248 ;; Remember new block names for later completion.
1249 (push choice latex-block-names))
1250 choice)
95a045bd 1251 \n "\\begin{" str "}"
8084f5d8
SM
1252 (cdr (assoc str latex-block-args-alist))
1253 > \n (or (cdr (assoc str latex-block-body-alist)) '(nil > _)) \n
95a045bd 1254 "\\end{" str "}" > \n)
53c4fe47 1255
ea590e1c
SM
1256(define-skeleton latex-insert-item
1257 "Insert a \item macro."
1258 nil
15ca8de7 1259 \n "\\item " >)
ea590e1c 1260
53c4fe47
SM
1261\f
1262;;;;
1263;;;; LaTeX syntax navigation
1264;;;;
869bff31 1265
5e56fb53
SM
1266(defmacro tex-search-noncomment (&rest body)
1267 "Execute BODY as long as it return non-nil and point is in a comment.
1268Return the value returned by the last execution of BODY."
1269 (declare (debug t))
1270 (let ((res-sym (make-symbol "result")))
1271 `(let (,res-sym)
1272 (while
1273 (and (setq ,res-sym (progn ,@body))
1274 (save-excursion (skip-chars-backward "^\n%") (not (bolp)))))
1275 ,res-sym)))
1276
869bff31 1277(defun tex-last-unended-begin ()
81c735c0 1278 "Leave point at the beginning of the last `\\begin{...}' that is unended."
95a045bd 1279 (condition-case nil
5e56fb53
SM
1280 (while (and (tex-search-noncomment
1281 (re-search-backward "\\\\\\(begin\\|end\\)\\s *{"))
95a045bd
SM
1282 (looking-at "\\\\end"))
1283 (tex-last-unended-begin))
1284 (search-failed (error "Couldn't find unended \\begin"))))
869bff31 1285
53c4fe47
SM
1286(defun tex-next-unmatched-end ()
1287 "Leave point at the end of the next `\\end' that is unended."
5e56fb53
SM
1288 (while (and (tex-search-noncomment
1289 (re-search-forward "\\\\\\(begin\\|end\\)\\s *{[^}]+}"))
ea590e1c
SM
1290 (save-excursion (goto-char (match-beginning 0))
1291 (looking-at "\\\\begin")))
53c4fe47
SM
1292 (tex-next-unmatched-end)))
1293
6a900cf1
ER
1294(defun tex-goto-last-unclosed-latex-block ()
1295 "Move point to the last unclosed \\begin{...}.
1296Mark is left at original location."
1297 (interactive)
1298 (let ((spot))
1299 (save-excursion
95a045bd 1300 (tex-last-unended-begin)
6a900cf1
ER
1301 (setq spot (point)))
1302 (push-mark)
1303 (goto-char spot)))
1304
53c4fe47
SM
1305(defun latex-backward-sexp-1 ()
1306 "Like (backward-sexp 1) but aware of multi-char elements."
1307 (let ((pos (point))
1308 (forward-sexp-function))
1309 (backward-sexp 1)
1310 (if (looking-at "\\\\begin\\>")
1311 (signal 'scan-error
1312 (list "Containing expression ends prematurely"
1313 (point) (prog1 (point) (goto-char pos))))
1314 (when (eq (char-after) ?{)
1315 (let ((newpos (point)))
1316 (when (ignore-errors (backward-sexp 1) t)
1317 (if (looking-at "\\\\end\\>")
1318 (tex-last-unended-begin)
1319 (goto-char newpos))))))))
1320
1321(defun latex-forward-sexp-1 ()
1322 "Like (forward-sexp 1) but aware of multi-char elements."
1323 (let ((pos (point))
1324 (forward-sexp-function))
1325 (forward-sexp 1)
1326 (let ((newpos (point)))
1327 (skip-syntax-backward "/w")
1328 (cond
1329 ((looking-at "\\\\end\\>")
1330 (signal 'scan-error
1331 (list "Containing expression ends prematurely"
1332 (point)
1333 (prog1
1334 (progn (ignore-errors (forward-sexp 2)) (point))
1335 (goto-char pos)))))
1336 ((looking-at "\\\\begin\\>")
1337 (goto-char (match-end 0))
1338 (tex-next-unmatched-end))
1339 (t (goto-char newpos))))))
1340
1341(defun latex-forward-sexp (&optional arg)
1342 "Like `forward-sexp' but aware of multi-char elements."
1343 (interactive "P")
1344 (unless arg (setq arg 1))
1345 (let ((pos (point)))
1346 (condition-case err
1347 (while (/= arg 0)
1348 (setq arg
1349 (if (> arg 0)
1350 (progn (latex-forward-sexp-1) (1- arg))
1351 (progn (latex-backward-sexp-1) (1+ arg)))))
1352 (scan-error
1353 (goto-char pos)
1354 (signal (car err) (cdr err))))))
1355
ea590e1c
SM
1356(defun latex-syntax-after ()
1357 "Like (char-syntax (char-after)) but aware of multi-char elements."
15ca8de7 1358 (if (looking-at "\\\\end\\>") ?\) (char-syntax (following-char))))
ea590e1c
SM
1359
1360(defun latex-skip-close-parens ()
1361 "Like (skip-syntax-forward \" )\") but aware of multi-char elements."
1362 (let ((forward-sexp-function nil))
1363 (while (progn (skip-syntax-forward " )")
1364 (looking-at "\\\\end\\>"))
1365 (forward-sexp 2))))
1366
1367(defun latex-down-list ()
1368 "Like (down-list 1) but aware of multi-char elements."
1369 (forward-comment (point-max))
1370 (let ((forward-sexp-function nil))
1371 (if (not (looking-at "\\\\begin\\>"))
1372 (down-list 1)
1373 (forward-sexp 1)
1374 ;; Skip arguments.
7afecb99
SM
1375 (while (looking-at "[ \t]*[[{(]")
1376 (with-syntax-table tex-mode-syntax-table
1377 (forward-sexp))))))
ea590e1c 1378
7afecb99
SM
1379(defalias 'tex-close-latex-block 'latex-close-block)
1380(define-skeleton latex-close-block
1381 "Create an \\end{...} to match the last unclosed \\begin{...}."
1382 (save-excursion
1383 (tex-last-unended-begin)
1384 (if (not (looking-at "\\\\begin\\(\\s *{[^}\n]*}\\)")) '("{" _ "}")
1385 (match-string 1)))
1386 \n "\\end" str > \n)
1387
1388(define-skeleton latex-split-block
1389 "Split the enclosing environment by inserting \\end{..}\\begin{..} at point."
1390 (save-excursion
1391 (tex-last-unended-begin)
1392 (if (not (looking-at "\\\\begin\\(\\s *{[^}\n]*}\\)")) '("{" _ "}")
1393 (prog1 (match-string 1)
1394 (goto-char (match-end 1))
1395 (setq v1 (buffer-substring (point)
1396 (progn
1397 (while (looking-at "[ \t]*[[{]")
1398 (forward-sexp 1))
1399 (point)))))))
1400 \n "\\end" str > \n _ \n "\\begin" str v1 > \n)
15ca8de7
SM
1401
1402(defconst tex-discount-args-cmds
1403 '("begin" "end" "input" "special" "cite" "ref" "include" "includeonly"
1404 "documentclass" "usepackage" "label")
1405 "TeX commands whose arguments should not be counted as text.")
1406
1407(defun tex-count-words (begin end)
1408 "Count the number of words in the buffer."
1409 (interactive
1410 (if (and transient-mark-mode mark-active)
1411 (list (region-beginning) (region-end))
1412 (list (point-min) (point-max))))
1413 ;; TODO: skip comments and math and maybe some environments.
1414 (save-excursion
1415 (goto-char begin)
1416 (let ((count 0))
1417 (while (and (< (point) end) (re-search-forward "\\<" end t))
1418 (if (not (eq (char-syntax (preceding-char)) ?/))
1419 (progn
1420 ;; Don't count single-char words.
1421 (unless (looking-at ".\\>") (incf count))
1422 (forward-char 1))
1423 (let ((cmd
1424 (buffer-substring-no-properties
1425 (point) (progn (when (zerop (skip-chars-forward "a-zA-Z@"))
1426 (forward-char 1))
1427 (point)))))
1428 (when (member cmd tex-discount-args-cmds)
1429 (skip-chars-forward "*")
1430 (forward-comment (point-max))
1431 (when (looking-at "\\[")
1432 (forward-sexp 1)
1433 (forward-comment (point-max)))
1434 (if (not (looking-at "{"))
1435 (forward-char 1)
1436 (forward-sexp 1))))))
1437 (message "%s words" count))))
b781e739
SS
1438
1439
869bff31 1440\f
1441;;; Invoking TeX in an inferior shell.
1442
15ca8de7
SM
1443;; Why use a shell instead of running TeX directly? Because if TeX
1444;; gets stuck, the user can switch to the shell window and type at it.
869bff31 1445
15ca8de7 1446;; The utility functions:
869bff31 1447
bdbd9606
SM
1448(define-derived-mode tex-shell shell-mode "TeX-Shell"
1449 (compilation-shell-minor-mode t))
1450
d974af30 1451;;;###autoload
869bff31 1452(defun tex-start-shell ()
d6709b80
SM
1453 (with-current-buffer
1454 (make-comint
1455 "tex-shell"
07c16ec4 1456 (or tex-shell-file-name (getenv "ESHELL") shell-file-name)
d6709b80 1457 nil)
528415e7
RS
1458 (let ((proc (get-process "tex-shell")))
1459 (set-process-sentinel proc 'tex-shell-sentinel)
1460 (process-kill-without-query proc)
bdbd9606 1461 (tex-shell)
528415e7 1462 (while (zerop (buffer-size))
51b2c841
RS
1463 (sleep-for 1)))))
1464
033306e3
RS
1465(defun tex-feed-input ()
1466 "Send input to the tex shell process.
1467In the tex buffer this can be used to continue an interactive tex run.
bed1b0c8 1468In the tex shell buffer this command behaves like `comint-send-input'."
033306e3 1469 (interactive)
b781e739 1470 (set-buffer (tex-shell-buf))
033306e3
RS
1471 (comint-send-input)
1472 (tex-recenter-output-buffer nil))
1473
51b2c841
RS
1474(defun tex-display-shell ()
1475 "Make the TeX shell buffer visible in a window."
b781e739 1476 (display-buffer (tex-shell-buf))
51b2c841 1477 (tex-recenter-output-buffer nil))
528415e7
RS
1478
1479(defun tex-shell-sentinel (proc msg)
1480 (cond ((null (buffer-name (process-buffer proc)))
1481 ;; buffer killed
1482 (set-process-buffer proc nil)
1483 (tex-delete-last-temp-files))
1484 ((memq (process-status proc) '(signal exit))
1485 (tex-delete-last-temp-files))))
1486
1487(defun tex-set-buffer-directory (buffer directory)
869bff31 1488 "Set BUFFER's default directory to be DIRECTORY."
1489 (setq directory (file-name-as-directory (expand-file-name directory)))
1490 (if (not (file-directory-p directory))
1491 (error "%s is not a directory" directory)
1492 (save-excursion
1493 (set-buffer buffer)
1494 (setq default-directory directory))))
1495
30803a05
RS
1496(defvar tex-send-command-modified-tick 0)
1497(make-variable-buffer-local 'tex-send-command-modified-tick)
1498
bdbd9606 1499(defun tex-shell-proc ()
b781e739 1500 (or (tex-shell-running) (error "No TeX subprocess")))
bdbd9606
SM
1501(defun tex-shell-buf ()
1502 (process-buffer (tex-shell-proc)))
b781e739
SS
1503(defun tex-shell-buf-no-error ()
1504 (let ((proc (tex-shell-running)))
1505 (and proc (process-buffer proc))))
bdbd9606 1506
528415e7 1507(defun tex-send-command (command &optional file background)
4cdc1d4b 1508 "Send COMMAND to TeX shell process, substituting optional FILE for *.
8241d7b9
ER
1509Do this in background if optional BACKGROUND is t. If COMMAND has no *,
1510FILE will be appended, preceded by a blank, to COMMAND. If FILE is nil, no
1511substitution will be made in COMMAND. COMMAND can be any expression that
460e1b7d
RS
1512evaluates to a command string.
1513
1514Return the process in which TeX is running."
528415e7
RS
1515 (save-excursion
1516 (let* ((cmd (eval command))
bdbd9606 1517 (proc (tex-shell-proc))
64db2461 1518 (buf (process-buffer proc))
4f45adda 1519 (star (string-match "\\*" cmd))
4cdc1d4b
RS
1520 (string
1521 (concat
1522 (if file
1523 (if star (concat (substring cmd 0 star)
1524 file (substring cmd (1+ star)))
1525 (concat cmd " " file))
1526 cmd)
1527 (if background "&" ""))))
64db2461
RS
1528 ;; Switch to buffer before checking for subproc output in it.
1529 (set-buffer buf)
30803a05
RS
1530 ;; If text is unchanged since previous tex-send-command,
1531 ;; we haven't got any output. So wait for output now.
64db2461 1532 (if (= (buffer-modified-tick buf) tex-send-command-modified-tick)
30803a05 1533 (accept-process-output proc))
4cdc1d4b
RS
1534 (goto-char (process-mark proc))
1535 (insert string)
30803a05 1536 (comint-send-input)
460e1b7d
RS
1537 (setq tex-send-command-modified-tick (buffer-modified-tick buf))
1538 proc)))
528415e7 1539
a15849cb
RS
1540(defun tex-delete-last-temp-files (&optional not-all)
1541 "Delete any junk files from last temp file.
1542If NOT-ALL is non-nil, save the `.dvi' file."
528415e7
RS
1543 (if tex-last-temp-file
1544 (let* ((dir (file-name-directory tex-last-temp-file))
adf6b7f9
KH
1545 (list (and (file-directory-p dir)
1546 (file-name-all-completions
02fd229c
RS
1547 (file-name-sans-extension
1548 (file-name-nondirectory tex-last-temp-file))
1549 dir))))
adf6b7f9 1550 (while list
a15849cb
RS
1551 (if not-all
1552 (and
1553 ;; If arg is non-nil, don't delete the .dvi file.
1554 (not (string-match "\\.dvi$" (car list)))
1555 (delete-file (concat dir (car list))))
1556 (delete-file (concat dir (car list))))
528415e7
RS
1557 (setq list (cdr list))))))
1558
99621a14 1559(add-hook 'kill-emacs-hook 'tex-delete-last-temp-files)
869bff31 1560
75035a80
SM
1561;;
1562;; Machinery to guess the command that the user wants to execute.
1563;;
1564
1565(defvar tex-compile-history nil)
1566
1567(defvar tex-input-files-re
1568 (eval-when-compile
1569 (concat "\\." (regexp-opt '("tex" "texi" "texinfo"
1570 "bbl" "ind" "sty" "cls") t)
1571 ;; Include files with no dots (for directories).
1572 "\\'\\|\\`[^.]+\\'")))
1573
1574(defcustom tex-use-reftex t
1575 "If non-nil, use RefTeX's list of files to determine what command to use."
1576 :type 'boolean)
1577
1578(defvar tex-compile-commands
1579 '(((concat "pdf" tex-command
bf4ec222
SM
1580 " " (if (< 0 (length tex-start-commands))
1581 (shell-quote-argument tex-start-commands)) " %f")
75035a80
SM
1582 t "%r.pdf")
1583 ((concat tex-command
bf4ec222
SM
1584 " " (if (< 0 (length tex-start-commands))
1585 (shell-quote-argument tex-start-commands)) " %f")
75035a80
SM
1586 t "%r.dvi")
1587 ("xdvi %r &" "%r.dvi")
1588 ("advi %r &" "%r.dvi")
1589 ("bibtex %r" "%r.aux" "%r.bbl")
1590 ("makeindex %r" "%r.idx" "%r.ind")
1591 ("texindex %r.??")
1592 ("dvipdfm %r" "%r.dvi" "%r.pdf")
1593 ("dvipdf %r" "%r.dvi" "%r.pdf")
1594 ("dvips %r" "%r.dvi" "%r.ps")
1595 ("gv %r.ps &" "%r.ps")
1596 ("gv %r.pdf &" "%r.pdf")
1597 ("xpdf %r.pdf &" "%r.pdf")
1598 ("lpr %r.ps" "%r.ps"))
1599 "List of commands for `tex-compile'.
1600Each element should be of the form (FORMAT IN OUT) where
1601FORMAT is an expression that evaluates to a string that can contain
1602 - `%r' the main file name without extension.
1603 - `%f' the main file name.
1604IN can be either a string (with the same % escapes in it) indicating
1605 the name of the input file, or t to indicate that the input is all
1606 the TeX files of the document, or nil if we don't know.
1607OUT describes the output file and is either a %-escaped string
1608 or nil to indicate that there is no output file.")
1609
8084f5d8
SM
1610;; defsubst* gives better byte-code than defsubst.
1611(defsubst* tex-string-prefix-p (str1 str2)
1612 "Return non-nil if STR1 is a prefix of STR2"
1613 (eq t (compare-strings str2 nil (length str1) str1 nil nil)))
1614
dd459839
SM
1615(defun tex-guess-main-file (&optional all)
1616 "Find a likely `tex-main-file'.
1617Looks for hints in other buffers in the same directory or in
8084f5d8
SM
1618ALL other buffers. If ALL is `sub' only look at buffers in parent directories
1619of the current buffer."
dd459839
SM
1620 (let ((dir default-directory)
1621 (header-re tex-start-of-header))
1622 (catch 'found
1623 ;; Look for a buffer with `tex-main-file' set.
1624 (dolist (buf (if (consp all) all (buffer-list)))
1625 (with-current-buffer buf
8084f5d8
SM
1626 (when (and (cond
1627 ((null all) (equal dir default-directory))
1628 ((eq all 'sub) (tex-string-prefix-p default-directory dir))
1629 (t))
dd459839
SM
1630 (stringp tex-main-file))
1631 (throw 'found (expand-file-name tex-main-file)))))
1632 ;; Look for a buffer containing the magic `tex-start-of-header'.
1633 (dolist (buf (if (consp all) all (buffer-list)))
1634 (with-current-buffer buf
8084f5d8
SM
1635 (when (and (cond
1636 ((null all) (equal dir default-directory))
1637 ((eq all 'sub) (tex-string-prefix-p default-directory dir))
1638 (t))
dd459839
SM
1639 buffer-file-name
1640 ;; (or (easy-mmode-derived-mode-p 'latex-mode)
1641 ;; (easy-mmode-derived-mode-p 'plain-tex-mode))
1642 (save-excursion
cb30255a
SM
1643 (save-restriction
1644 (widen)
1645 (goto-char (point-min))
95a045bd
SM
1646 (re-search-forward
1647 header-re (+ (point) 10000) t))))
dd459839
SM
1648 (throw 'found (expand-file-name buffer-file-name))))))))
1649
07c16ec4
SM
1650(defun tex-main-file ()
1651 "Return the relative name of the main file."
bdbd9606
SM
1652 (let* ((file (or tex-main-file
1653 ;; Compatibility with AUCTeX.
96c0d9e9
RS
1654 (with-no-warnings
1655 (when (and (boundp 'TeX-master) (stringp TeX-master))
1656 (make-local-variable 'tex-main-file)
1657 (setq tex-main-file TeX-master)))
bdbd9606
SM
1658 ;; Try to guess the main file.
1659 (if (not buffer-file-name)
1660 (error "Buffer is not associated with any file")
1661 (file-relative-name
1662 (if (save-excursion
1663 (goto-char (point-min))
95a045bd
SM
1664 (re-search-forward tex-start-of-header
1665 (+ (point) 10000) t))
bdbd9606
SM
1666 ;; This is the main file.
1667 buffer-file-name
1668 ;; This isn't the main file, let's try to find better,
1669 (or (tex-guess-main-file)
8084f5d8 1670 (tex-guess-main-file 'sub)
bdbd9606 1671 ;; (tex-guess-main-file t)
07c16ec4
SM
1672 buffer-file-name)))))))
1673 (if (file-exists-p file) file (concat file ".tex"))))
dd459839 1674
75035a80
SM
1675(defun tex-summarize-command (cmd)
1676 (if (not (stringp cmd)) ""
1677 (mapconcat 'identity
1678 (mapcar (lambda (s) (car (split-string s)))
1679 (split-string cmd "\\s-*\\(?:;\\|&&\\)\\s-*"))
1680 "&")))
1681
1682(defun tex-uptodate-p (file)
1683 "Return non-nil if FILE is not uptodate w.r.t the document source files.
1684FILE is typically the output DVI or PDF file."
1685 ;; We should check all the files included !!!
1686 (and
1687 ;; Clearly, the target must exist.
1688 (file-exists-p file)
1689 ;; And the last run must not have asked for a rerun.
1690 ;; FIXME: this should check that the last run was done on the same file.
1691 (let ((buf (condition-case nil (tex-shell-buf) (error nil))))
1692 (when buf
1693 (with-current-buffer buf
1694 (save-excursion
1695 (goto-char (point-max))
1696 (and (re-search-backward
1697 "(see the transcript file for additional information)" nil t)
1698 (> (save-excursion
1699 (or (re-search-backward "\\[[0-9]+\\]" nil t)
1700 (point-min)))
1701 (save-excursion
1702 (or (re-search-backward "Rerun" nil t)
1703 (point-min)))))))))
1704 ;; And the input files must not have been changed in the meantime.
1705 (let ((files (if (and tex-use-reftex
1706 (fboundp 'reftex-scanning-info-available-p)
1707 (reftex-scanning-info-available-p))
1708 (reftex-all-document-files)
1709 (list (file-name-directory (expand-file-name file)))))
1710 (ignored-dirs-re
1711 (concat
1712 (regexp-opt
1713 (delq nil (mapcar (lambda (s) (if (eq (aref s (1- (length s))) ?/)
1714 (substring s 0 (1- (length s)))))
1715 completion-ignored-extensions))
1716 t) "\\'"))
1717 (uptodate t))
1718 (while (and files uptodate)
1719 (let ((f (pop files)))
1720 (if (file-directory-p f)
1721 (unless (string-match ignored-dirs-re f)
1722 (setq files (nconc
1723 (directory-files f t tex-input-files-re)
1724 files)))
1725 (when (file-newer-than-file-p f file)
1726 (setq uptodate nil)))))
1727 uptodate)))
1728
1729
1730(autoload 'format-spec "format-spec")
1731
1732(defvar tex-executable-cache nil)
1733(defun tex-executable-exists-p (name)
1734 "Like `executable-find' but with a cache."
1735 (let ((cache (assoc name tex-executable-cache)))
1736 (if cache (cdr cache)
1737 (let ((executable (executable-find name)))
1738 (push (cons name executable) tex-executable-cache)
1739 executable))))
1740
1741(defun tex-command-executable (cmd)
1742 (let ((s (if (stringp cmd) cmd (eval (car cmd)))))
1743 (substring s 0 (string-match "[ \t]\\|\\'" s))))
1744
1745(defun tex-command-active-p (cmd fspec)
1746 "Return non-nil if the CMD spec might need to be run."
1747 (let ((in (nth 1 cmd))
1748 (out (nth 2 cmd)))
1749 (if (stringp in)
1750 (let ((file (format-spec in fspec)))
1751 (when (file-exists-p file)
1752 (or (not out)
1753 (file-newer-than-file-p
1754 file (format-spec out fspec)))))
1755 (when (and (eq in t) (stringp out))
1756 (not (tex-uptodate-p (format-spec out fspec)))))))
1757
8084f5d8
SM
1758(defun tex-compile-default (fspec)
1759 "Guess a default command given the format-spec FSPEC."
75035a80
SM
1760 ;; TODO: Learn to do latex+dvips!
1761 (let ((cmds nil)
1762 (unchanged-in nil))
1763 ;; Only consider active commands.
1764 (dolist (cmd tex-compile-commands)
1765 (when (tex-executable-exists-p (tex-command-executable cmd))
1766 (if (tex-command-active-p cmd fspec)
1767 (push cmd cmds)
1768 (push (nth 1 cmd) unchanged-in))))
1769 ;; Remove those commands whose input was considered stable for
1770 ;; some other command (typically if (t . "%.pdf") is inactive
1771 ;; then we're using pdflatex and the fact that the dvi file
1772 ;; is inexistent doesn't matter).
1773 (let ((tmp nil))
1774 (dolist (cmd cmds)
1775 (unless (member (nth 1 cmd) unchanged-in)
1776 (push cmd tmp)))
8084f5d8 1777 ;; Only remove if there's something left.
75035a80 1778 (if tmp (setq cmds tmp)))
8084f5d8
SM
1779 ;; Remove commands whose input is not uptodate either.
1780 (let ((outs (delq nil (mapcar (lambda (x) (nth 2 x)) cmds)))
1781 (tmp nil))
1782 (dolist (cmd cmds)
75035a80 1783 (unless (member (nth 1 cmd) outs)
8084f5d8
SM
1784 (push cmd tmp)))
1785 ;; Only remove if there's something left.
1786 (if tmp (setq cmds tmp)))
75035a80
SM
1787 ;; Select which file we're going to operate on (the latest).
1788 (let ((latest (nth 1 (car cmds))))
1789 (dolist (cmd (prog1 (cdr cmds) (setq cmds (list (car cmds)))))
1790 (if (equal latest (nth 1 cmd))
1791 (push cmd cmds)
1792 (unless (eq latest t) ;Can't beat that!
1793 (if (or (not (stringp latest))
1794 (eq (nth 1 cmd) t)
1795 (and (stringp (nth 1 cmd))
1796 (file-newer-than-file-p
1797 (format-spec (nth 1 cmd) fspec)
1798 (format-spec latest fspec))))
1799 (setq latest (nth 1 cmd) cmds (list cmd)))))))
1800 ;; Expand the command spec into the actual text.
1801 (dolist (cmd (prog1 cmds (setq cmds nil)))
1802 (push (cons (eval (car cmd)) (cdr cmd)) cmds))
1803 ;; Select the favorite command from the history.
1804 (let ((hist tex-compile-history)
8084f5d8 1805 re hist-cmd)
75035a80 1806 (while hist
8084f5d8 1807 (setq hist-cmd (pop hist))
75035a80 1808 (setq re (concat "\\`"
8084f5d8 1809 (regexp-quote (tex-command-executable hist-cmd))
75035a80
SM
1810 "\\([ \t]\\|\\'\\)"))
1811 (dolist (cmd cmds)
8084f5d8
SM
1812 ;; If the hist entry uses the same command and applies to a file
1813 ;; of the same type (e.g. `gv %r.pdf' vs `gv %r.ps'), select cmd.
1814 (and (string-match re (car cmd))
1815 (or (not (string-match "%[fr]\\([-._[:alnum:]]+\\)" (car cmd)))
1816 (string-match (regexp-quote (match-string 1 (car cmd)))
1817 hist-cmd))
1818 (setq hist nil cmds (list cmd)))))
1819 ;; Substitute and return.
1820 (if (and hist-cmd
1821 (string-match (concat "[' \t\"]" (format-spec "%r" fspec)
1822 "\\([;&' \t\"]\\|\\'\\)") hist-cmd))
1823 ;; The history command was already applied to the same file,
1824 ;; so just reuse it.
1825 hist-cmd
1826 (if cmds (format-spec (caar cmds) fspec))))))
75035a80
SM
1827
1828(defun tex-compile (dir cmd)
1829 "Run a command CMD on current TeX buffer's file in DIR."
1830 ;; FIXME: Use time-stamps on files to decide the next op.
1831 (interactive
1832 (let* ((file (tex-main-file))
5e56fb53
SM
1833 (default-directory
1834 (prog1 (file-name-directory (expand-file-name file))
1835 (setq file (file-name-nondirectory file))))
75035a80 1836 (root (file-name-sans-extension file))
75035a80
SM
1837 (fspec (list (cons ?r (comint-quote-filename root))
1838 (cons ?f (comint-quote-filename file))))
8084f5d8 1839 (default (tex-compile-default fspec)))
5e56fb53 1840 (list default-directory
75035a80
SM
1841 (completing-read
1842 (format "Command [%s]: " (tex-summarize-command default))
1843 (mapcar (lambda (x)
1844 (list (format-spec (eval (car x)) fspec)))
1845 tex-compile-commands)
1846 nil nil nil 'tex-compile-history default))))
1847 (save-some-buffers (not compilation-ask-about-save) nil)
1848 (if (tex-shell-running)
1849 (tex-kill-job)
1850 (tex-start-shell))
1851 (tex-send-tex-command cmd dir))
d6709b80
SM
1852
1853(defun tex-start-tex (command file &optional dir)
460e1b7d 1854 "Start a TeX run, using COMMAND on FILE."
6633b891 1855 (let* ((star (string-match "\\*" command))
460e1b7d 1856 (compile-command
6633b891
KH
1857 (if star
1858 (concat (substring command 0 star)
1859 (comint-quote-filename file)
1860 (substring command (1+ star)))
1861 (concat command " "
95a045bd 1862 tex-start-options
9e0ad27a 1863 (if (< 0 (length tex-start-commands))
c3ce7bf4 1864 (concat
9e0ad27a 1865 (shell-quote-argument tex-start-commands) " "))
6633b891 1866 (comint-quote-filename file)))))
bdbd9606
SM
1867 (tex-send-tex-command compile-command dir)))
1868
1869(defun tex-send-tex-command (cmd &optional dir)
b781e739
SS
1870 (unless (or (equal dir (let ((buf (tex-shell-buf-no-error)))
1871 (and buf (with-current-buffer buf
1872 default-directory))))
bdbd9606
SM
1873 (not dir))
1874 (let (shell-dirtrack-verbose)
1875 (tex-send-command tex-shell-cd-command dir)))
1876 (with-current-buffer (process-buffer (tex-send-command cmd))
bdbd9606
SM
1877 (make-local-variable 'compilation-parse-errors-function)
1878 (setq compilation-parse-errors-function 'tex-compilation-parse-errors)
1879 (setq compilation-last-buffer (current-buffer))
1880 (compilation-forget-errors)
1598a961 1881 ;; Don't parse previous compilations.
bdbd9606
SM
1882 (set-marker compilation-parsing-end (1- (point-max))))
1883 (tex-display-shell)
1884 (setq tex-last-buffer-texed (current-buffer)))
460e1b7d 1885\f
1598a961
SM
1886(defvar tex-error-parse-syntax-table
1887 (let ((st (make-syntax-table)))
1888 (modify-syntax-entry ?\( "()" st)
1889 (modify-syntax-entry ?\) ")(" st)
1890 (modify-syntax-entry ?\\ "\\" st)
1891 (modify-syntax-entry ?\{ "_" st)
1892 (modify-syntax-entry ?\} "_" st)
1893 (modify-syntax-entry ?\[ "_" st)
1894 (modify-syntax-entry ?\] "_" st)
1895 ;; Single quotations may appear in errors
1896 (modify-syntax-entry ?\" "_" st)
1897 st)
1898 "Syntax-table used while parsing TeX error messages.")
1899
460e1b7d 1900(defun tex-compilation-parse-errors (limit-search find-at-least)
f05bd645
RS
1901 "Parse the current buffer as TeX error messages.
1902See the variable `compilation-parse-errors-function' for the interface it uses.
1903
1904This function parses only the last TeX compilation.
1905It works on TeX compilations only. It is necessary for that purpose,
1906since TeX does not put file names and line numbers on the same line as
1907for the error messages."
460e1b7d
RS
1908 (require 'thingatpt)
1909 (setq compilation-error-list nil)
1910 (message "Parsing error messages...")
f05bd645
RS
1911 (let ((default-directory ; Perhaps dir has changed meanwhile.
1912 (file-name-directory (buffer-file-name tex-last-buffer-texed)))
f05bd645
RS
1913 found-desired (num-errors-found 0)
1914 last-filename last-linenum last-position
1915 begin-of-error end-of-error)
f05bd645
RS
1916 ;; Don't reparse messages already seen at last parse.
1917 (goto-char compilation-parsing-end)
1918 ;; Parse messages.
1919 (while (and (not (or found-desired (eobp)))
1920 (prog1 (re-search-forward "^! " nil 'move)
1921 (setq begin-of-error (match-beginning 0)
1922 end-of-error (match-end 0)))
1923 (re-search-forward
1924 "^l\\.\\([0-9]+\\) \\(\\.\\.\\.\\)?\\(.*\\)$" nil 'move))
1925 (let* ((this-error (set-marker (make-marker) begin-of-error))
1926 (linenum (string-to-int (match-string 1)))
1927 (error-text (regexp-quote (match-string 3)))
1928 (filename
1929 (save-excursion
ea590e1c
SM
1930 (with-syntax-table tex-error-parse-syntax-table
1931 (backward-up-list 1)
1932 (skip-syntax-forward "(_")
1933 (while (not (file-readable-p (thing-at-point 'filename)))
1934 (skip-syntax-backward "(_")
1935 (backward-up-list 1)
1936 (skip-syntax-forward "(_"))
1937 (thing-at-point 'filename))))
f05bd645
RS
1938 (new-file
1939 (or (null last-filename)
1940 (not (string-equal last-filename filename))))
1941 (error-location
1942 (save-excursion
1943 (if (equal filename (concat tex-zap-file ".tex"))
1944 (set-buffer tex-last-buffer-texed)
1945 (set-buffer (find-file-noselect filename)))
1946 (if new-file
1598a961 1947 (progn (goto-line linenum) (setq last-position nil))
f05bd645
RS
1948 (goto-char last-position)
1949 (forward-line (- linenum last-linenum)))
1950 ;; first try a forward search for the error text,
1951 ;; then a backward search limited by the last error.
1952 (let ((starting-point (point)))
1953 (or (re-search-forward error-text nil t)
1598a961 1954 (re-search-backward error-text last-position t)
f05bd645
RS
1955 (goto-char starting-point)))
1956 (point-marker))))
1957 (goto-char this-error)
1958 (if (and compilation-error-list
1959 (or (and find-at-least
1960 (>= num-errors-found
1961 find-at-least))
1962 (and limit-search
1963 (>= end-of-error limit-search)))
1964 new-file)
1965 (setq found-desired t)
1966 (setq num-errors-found (1+ num-errors-found)
1967 last-filename filename
1968 last-linenum linenum
1969 last-position error-location
1970 compilation-error-list ; Add the new error
1971 (cons (cons this-error error-location)
1972 compilation-error-list))
1973 (goto-char end-of-error)))))
ee13a145 1974 (set-marker compilation-parsing-end (point))
f05bd645 1975 (setq compilation-error-list (nreverse compilation-error-list))
460e1b7d
RS
1976 (message "Parsing error messages...done"))
1977\f
528415e7 1978;;; The commands:
869bff31 1979
1980(defun tex-region (beg end)
1981 "Run TeX on the current region, via a temporary file.
1982The file's name comes from the variable `tex-zap-file' and the
1983variable `tex-directory' says where to put it.
1984
1985If the buffer has a header, the header is given to TeX before the
1986region itself. The buffer's header is all lines between the strings
1987defined by `tex-start-of-header' and `tex-end-of-header' inclusive.
1988The header must start in the first 100 lines of the buffer.
1989
1990The value of `tex-trailer' is given to TeX as input after the region.
1991
1992The value of `tex-command' specifies the command to use to run TeX."
1993 (interactive "r")
1994 (if (tex-shell-running)
1995 (tex-kill-job)
1996 (tex-start-shell))
1997 (or tex-zap-file
1998 (setq tex-zap-file (tex-generate-zap-file-name)))
6d34c59f
RS
1999 ;; Temp file will be written and TeX will be run in zap-directory.
2000 ;; If the TEXINPUTS file has relative directories or if the region has
2001 ;; \input of files, this must be the same directory as the file for
2002 ;; TeX to access the correct inputs. That's why it's safest if
2003 ;; tex-directory is ".".
2004 (let* ((zap-directory
528415e7 2005 (file-name-as-directory (expand-file-name tex-directory)))
d6709b80
SM
2006 (tex-out-file (expand-file-name (concat tex-zap-file ".tex")
2007 zap-directory)))
0d548e5d
RS
2008 ;; Don't delete temp files if we do the same buffer twice in a row.
2009 (or (eq (current-buffer) tex-last-buffer-texed)
2010 (tex-delete-last-temp-files t))
869bff31 2011 ;; Write the new temp file.
2012 (save-excursion
2013 (save-restriction
2014 (widen)
2015 (goto-char (point-min))
2016 (forward-line 100)
2017 (let ((search-end (point))
6d34c59f
RS
2018 (default-directory zap-directory)
2019 (already-output 0))
869bff31 2020 (goto-char (point-min))
6d34c59f 2021
725b7428
RS
2022 ;; Maybe copy first line, such as `\input texinfo', to temp file.
2023 (and tex-first-line-header-regexp
2024 (looking-at tex-first-line-header-regexp)
bed1b0c8 2025 (write-region (point)
6d34c59f
RS
2026 (progn (forward-line 1)
2027 (setq already-output (point)))
725b7428
RS
2028 tex-out-file nil nil))
2029
6d34c59f
RS
2030 ;; Write out the header, if there is one,
2031 ;; and any of the specified region which extends before it.
2032 ;; But don't repeat anything already written.
898b9ac1 2033 (if (re-search-forward tex-start-of-header search-end t)
6d34c59f 2034 (let (hbeg)
869bff31 2035 (beginning-of-line)
2036 (setq hbeg (point)) ;mark beginning of header
898b9ac1 2037 (if (re-search-forward tex-end-of-header nil t)
6d34c59f
RS
2038 (let (hend)
2039 (forward-line 1)
bed1b0c8 2040 (setq hend (point)) ;mark end of header
6d34c59f
RS
2041 (write-region (max (min hbeg beg) already-output)
2042 hend
2043 tex-out-file
2044 (not (zerop already-output)) nil)
2045 (setq already-output hend)))))
2046
2047 ;; Write out the specified region
2048 ;; (but don't repeat anything already written).
2049 (write-region (max beg already-output) end
2050 tex-out-file
2051 (not (zerop already-output)) nil))
2052 ;; Write the trailer, if any.
2053 ;; Precede it with a newline to make sure it
2054 ;; is not hidden in a comment.
2055 (if tex-trailer
2056 (write-region (concat "\n" tex-trailer) nil
2057 tex-out-file t nil))))
528415e7
RS
2058 ;; Record the file name to be deleted afterward.
2059 (setq tex-last-temp-file tex-out-file)
f05bd645
RS
2060 ;; Use a relative file name here because (1) the proper dir
2061 ;; is already current, and (2) the abs file name is sometimes
2062 ;; too long and can make tex crash.
d6709b80
SM
2063 (tex-start-tex tex-command (concat tex-zap-file ".tex") zap-directory)
2064 (setq tex-print-file tex-out-file)))
869bff31 2065
2066(defun tex-buffer ()
2067 "Run TeX on current buffer. See \\[tex-region] for more information.
528415e7
RS
2068Does not save the buffer, so it's useful for trying experimental versions.
2069See \\[tex-file] for an alternative."
869bff31 2070 (interactive)
2071 (tex-region (point-min) (point-max)))
2072
2073(defun tex-file ()
2074 "Prompt to save all buffers and run TeX (or LaTeX) on current buffer's file.
2075This function is more useful than \\[tex-buffer] when you need the
2076`.aux' file of LaTeX to have the correct name."
2077 (interactive)
7abc9add
SS
2078 (when tex-offer-save
2079 (save-some-buffers))
d6709b80 2080 (let* ((source-file (tex-main-file))
07c16ec4 2081 (file-dir (file-name-directory (expand-file-name source-file))))
869bff31 2082 (if (tex-shell-running)
2083 (tex-kill-job)
2084 (tex-start-shell))
d6709b80 2085 (tex-start-tex tex-command source-file file-dir)
f05bd645 2086 (setq tex-print-file (expand-file-name source-file))))
869bff31 2087
2088(defun tex-generate-zap-file-name ()
2089 "Generate a unique name suitable for use as a file name."
2090 ;; Include the shell process number and host name
2091 ;; in case there are multiple shells (for same or different user).
f5cdb851
KH
2092 ;; Dec 1998: There is a report that some versions of xdvi
2093 ;; don't work with file names that start with #.
5616ee46 2094 (format "_TZ_%d-%s"
869bff31 2095 (process-id (get-buffer-process "*tex-shell*"))
07c16ec4 2096 (subst-char-in-string ?. ?- (system-name))))
869bff31 2097
2098;; This will perhaps be useful for modifying TEXINPUTS.
2099;; Expand each file name, separated by colons, in the string S.
2100(defun tex-expand-files (s)
2101 (let (elts (start 0))
2102 (while (string-match ":" s start)
2103 (setq elts (cons (substring s start (match-beginning 0)) elts))
2104 (setq start (match-end 0)))
2105 (or (= start 0)
2106 (setq elts (cons (substring s start) elts)))
c0df1972
SM
2107 (mapconcat (lambda (elt)
2108 (if (= (length elt) 0) elt (expand-file-name elt)))
5616ee46 2109 (nreverse elts) ":")))
869bff31 2110
2111(defun tex-shell-running ()
713f7b15 2112 (let ((proc (get-process "tex-shell")))
b781e739
SS
2113 (when proc
2114 (if (and (eq (process-status proc) 'run)
2115 (buffer-live-p (process-buffer proc)))
2116 ;; return the TeX process on success
2117 proc
2118 ;; get rid of the process permanently
2119 ;; this should get rid of the annoying w32 problem with
2120 ;; dead tex-shell buffer and live process
2121 (delete-process proc)))))
869bff31 2122
2123(defun tex-kill-job ()
2124 "Kill the currently running TeX job."
2125 (interactive)
b781e739 2126 ;; `quit-process' leads to core dumps of the tex process (except if
bed1b0c8
RS
2127 ;; coredumpsize has limit 0kb as on many environments). One would
2128 ;; like to use (kill-process proc 'lambda), however that construct
2129 ;; does not work on some systems and kills the shell itself.
b781e739
SS
2130 (let ((proc (get-process "tex-shell")))
2131 (when proc (quit-process proc t))))
869bff31 2132
2133(defun tex-recenter-output-buffer (linenum)
2134 "Redisplay buffer of TeX job output so that most recent output can be seen.
2135The last line of the buffer is displayed on
2136line LINE of the window, or centered if LINE is nil."
2137 (interactive "P")
2138 (let ((tex-shell (get-buffer "*tex-shell*"))
23b64225 2139 (window))
869bff31 2140 (if (null tex-shell)
2141 (message "No TeX output buffer")
23b64225
RS
2142 (setq window (display-buffer tex-shell))
2143 (save-selected-window
2144 (select-window window)
2145 (bury-buffer tex-shell)
2146 (goto-char (point-max))
2147 (recenter (if linenum
2148 (prefix-numeric-value linenum)
2149 (/ (window-height) 2)))))))
869bff31 2150
528415e7 2151(defun tex-print (&optional alt)
869bff31 2152 "Print the .dvi file made by \\[tex-region], \\[tex-buffer] or \\[tex-file].
1433a222
CZ
2153Runs the shell command defined by `tex-dvi-print-command'. If prefix argument
2154is provided, use the alternative command, `tex-alt-dvi-print-command'."
528415e7 2155 (interactive "P")
869bff31 2156 (let ((print-file-name-dvi (tex-append tex-print-file ".dvi"))
2157 test-name)
2158 (if (and (not (equal (current-buffer) tex-last-buffer-texed))
45c3304d
RS
2159 (buffer-file-name)
2160 ;; Check that this buffer's printed file is up to date.
869bff31 2161 (file-newer-than-file-p
2162 (setq test-name (tex-append (buffer-file-name) ".dvi"))
45c3304d 2163 (buffer-file-name)))
869bff31 2164 (setq print-file-name-dvi test-name))
528415e7
RS
2165 (if (not (file-exists-p print-file-name-dvi))
2166 (error "No appropriate `.dvi' file could be found")
460e1b7d
RS
2167 (if (tex-shell-running)
2168 (tex-kill-job)
2169 (tex-start-shell))
528415e7 2170 (tex-send-command
bed1b0c8 2171 (if alt tex-alt-dvi-print-command tex-dvi-print-command)
602503c5
RS
2172 (shell-quote-argument
2173 print-file-name-dvi)
2174 t))))
869bff31 2175
cf6d6e8a
RS
2176(defun tex-alt-print ()
2177 "Print the .dvi file made by \\[tex-region], \\[tex-buffer] or \\[tex-file].
002b0d00 2178Runs the shell command defined by `tex-alt-dvi-print-command'."
cf6d6e8a
RS
2179 (interactive)
2180 (tex-print t))
2181
869bff31 2182(defun tex-view ()
2183 "Preview the last `.dvi' file made by running TeX under Emacs.
2184This means, made using \\[tex-region], \\[tex-buffer] or \\[tex-file].
2b7971c9
RS
2185The variable `tex-dvi-view-command' specifies the shell command for preview.
2186You must set that variable yourself before using this command,
2187because there is no standard value that would generally work."
869bff31 2188 (interactive)
2b7971c9
RS
2189 (or tex-dvi-view-command
2190 (error "You must set `tex-dvi-view-command'"))
746c30e2 2191 (let ((tex-dvi-print-command (eval tex-dvi-view-command)))
869bff31 2192 (tex-print)))
2193
2194(defun tex-append (file-name suffix)
2195 "Append to FILENAME the suffix SUFFIX, using same algorithm TeX uses.
cf6d6e8a 2196Pascal-based TeX scans for the first period, C TeX uses the last.
869bff31 2197No period is retained immediately before SUFFIX,
2198so normally SUFFIX starts with one."
2199 (if (stringp file-name)
cf6d6e8a
RS
2200 (let ((file (file-name-nondirectory file-name))
2201 trial-name)
6da9bbd6 2202 ;; Try splitting on last period.
7d0ca249
RS
2203 ;; The first-period split can get fooled when two files
2204 ;; named a.tex and a.b.tex are both tex'd;
2205 ;; the last-period split must be right if it matches at all.
cf6d6e8a
RS
2206 (setq trial-name
2207 (concat (file-name-directory file-name)
2208 (substring file 0
7d0ca249 2209 (string-match "\\.[^.]*$" file))
cf6d6e8a
RS
2210 suffix))
2211 (if (or (file-exists-p trial-name)
2212 (file-exists-p (concat trial-name ".aux"))) ;for BibTeX files
2213 trial-name
7d0ca249 2214 ;; Not found, so split on first period.
cf6d6e8a
RS
2215 (concat (file-name-directory file-name)
2216 (substring file 0
7d0ca249 2217 (string-match "\\." file))
cf6d6e8a 2218 suffix)))
869bff31 2219 " "))
2220
2221(defun tex-show-print-queue ()
2222 "Show the print queue that \\[tex-print] put your job on.
1433a222 2223Runs the shell command defined by `tex-show-queue-command'."
869bff31 2224 (interactive)
2225 (if (tex-shell-running)
2226 (tex-kill-job)
2227 (tex-start-shell))
51b2c841
RS
2228 (tex-send-command tex-show-queue-command)
2229 (tex-display-shell))
869bff31 2230
2231(defun tex-bibtex-file ()
2232 "Run BibTeX on the current buffer's file."
2233 (interactive)
2234 (if (tex-shell-running)
2235 (tex-kill-job)
2236 (tex-start-shell))
e6b0b773
MR
2237 (let (shell-dirtrack-verbose
2238 (tex-out-file
869bff31 2239 (tex-append (file-name-nondirectory (buffer-file-name)) ""))
2240 (file-dir (file-name-directory (buffer-file-name))))
528415e7 2241 (tex-send-command tex-shell-cd-command file-dir)
51b2c841
RS
2242 (tex-send-command tex-bibtex-command tex-out-file))
2243 (tex-display-shell))
ea590e1c
SM
2244\f
2245;;;;
2246;;;; LaTeX indentation
2247;;;;
2248
2249(defvar tex-indent-allhanging t)
2250(defvar tex-indent-arg 4)
2251(defvar tex-indent-basic 2)
2252(defvar tex-indent-item tex-indent-basic)
2253(defvar tex-indent-item-re "\\\\\\(bib\\)?item\\>")
2254
8a591d52
SM
2255(defvar tex-latex-indent-syntax-table
2256 (let ((st (make-syntax-table tex-mode-syntax-table)))
2257 (modify-syntax-entry ?$ "." st)
2258 (modify-syntax-entry ?\( "." st)
2259 (modify-syntax-entry ?\) "." st)
2260 st)
2261 "Syntax table used while computing indentation.")
ea590e1c
SM
2262
2263(defun latex-indent (&optional arg)
7afecb99
SM
2264 (if (and (eq (get-text-property (line-beginning-position) 'face)
2265 tex-verbatim-face))
a3d80d4a 2266 'noindent
7afecb99
SM
2267 (with-syntax-table tex-latex-indent-syntax-table
2268 ;; TODO: Rather than ignore $, we should try to be more clever about it.
2269 (let ((indent
2270 (save-excursion
2271 (beginning-of-line)
2272 (latex-find-indent))))
2273 (if (< indent 0) (setq indent 0))
2274 (if (<= (current-column) (current-indentation))
2275 (indent-line-to indent)
2276 (save-excursion (indent-line-to indent)))))))
ea590e1c
SM
2277
2278(defun latex-find-indent (&optional virtual)
2279 "Find the proper indentation of text after point.
2280VIRTUAL if non-nil indicates that we're only trying to find the indentation
2281 in order to determine the indentation of something else.
2282There might be text before point."
2283 (save-excursion
2284 (skip-chars-forward " \t")
2285 (or
7afecb99
SM
2286 ;; Stick the first line at column 0.
2287 (and (= (point-min) (line-beginning-position)) 0)
ea590e1c 2288 ;; Trust the current indentation, if such info is applicable.
7afecb99
SM
2289 (and virtual (save-excursion (skip-chars-backward " \t&") (bolp))
2290 (current-column))
2291 ;; Stick verbatim environments to the left margin.
2292 (and (looking-at "\\\\\\(begin\\|end\\) *{\\([^\n}]+\\)")
2293 (member (match-string 2) tex-verbatim-environments)
2294 0)
ea590e1c
SM
2295 ;; Put leading close-paren where the matching open brace would be.
2296 (and (eq (latex-syntax-after) ?\))
2297 (ignore-errors
2298 (save-excursion
2299 (latex-skip-close-parens)
2300 (latex-backward-sexp-1)
2301 (latex-find-indent 'virtual))))
2302 ;; Default (maybe an argument)
2303 (let ((pos (point))
2304 (char (char-after))
2305 ;; Outdent \item if necessary.
2306 (indent (if (looking-at tex-indent-item-re) (- tex-indent-item) 0))
2307 up-list-pos)
2308 ;; Find the previous point which determines our current indentation.
2309 (condition-case err
2310 (progn
2311 (latex-backward-sexp-1)
2312 (while (> (current-column) (current-indentation))
2313 (latex-backward-sexp-1)))
2314 (scan-error
2315 (setq up-list-pos (nth 2 err))))
8908cf40
SM
2316 (cond
2317 ((= (point-min) pos) 0) ; We're really just indenting the first line.
2318 ((integerp up-list-pos)
2319 ;; Have to indent relative to the open-paren.
2320 (goto-char up-list-pos)
2321 (if (and (not tex-indent-allhanging)
2322 (> pos (progn (latex-down-list)
2323 (forward-comment (point-max))
2324 (point))))
7afecb99 2325 ;; Align with the first element after the open-paren.
8908cf40
SM
2326 (current-column)
2327 ;; We're the first element after a hanging brace.
2328 (goto-char up-list-pos)
2329 (+ indent tex-indent-basic (latex-find-indent 'virtual))))
2330 ;; We're now at the "beginning" of a line.
2331 ((not (and (not virtual) (eq (char-after) ?\\)))
2332 ;; Nothing particular here: just keep the same indentation.
2333 (+ indent (current-column)))
2334 ;; We're now looking at a macro call.
7afecb99
SM
2335 ((looking-at tex-indent-item-re)
2336 ;; Indenting relative to an item, have to re-add the outdenting.
8908cf40
SM
2337 (+ indent (current-column) tex-indent-item))
2338 (t
2339 (let ((col (current-column)))
2340 (if (not (eq (char-syntax char) ?\())
2341 ;; If the first char was not an open-paren, there's
2342 ;; a risk that this is really not an argument to the
2343 ;; macro at all.
7afecb99
SM
2344 (+ indent col)
2345 (forward-sexp 1)
2346 (if (< (line-end-position)
2347 (save-excursion (forward-comment (point-max))
2348 (point)))
8908cf40
SM
2349 ;; we're indenting the first argument.
2350 (min (current-column) (+ tex-indent-arg col))
2351 (skip-syntax-forward " ")
2352 (current-column))))))))))
a3d80d4a
SM
2353;;; DocTeX support
2354
2355(defun doctex-font-lock-^^A ()
2356 (if (eq (char-after (line-beginning-position)) ?\%)
2357 (progn
2358 (put-text-property
2359 (1- (match-beginning 1)) (match-beginning 1)
2360 'syntax-table
2361 (if (= (1+ (line-beginning-position)) (match-beginning 1))
2362 ;; The `%' is a single-char comment, which Emacs
2363 ;; syntax-table can't deal with. We could turn it
2364 ;; into a non-comment, or use `\n%' or `%^' as the comment.
2365 ;; Instead, we include it in the ^^A comment.
2366 (eval-when-compile (string-to-syntax "< b"))
2367 (eval-when-compile (string-to-syntax ">"))))
2368 (let ((end (line-end-position)))
2369 (if (< end (point-max))
2370 (put-text-property
2371 end (1+ end)
2372 'syntax-table
2373 (eval-when-compile (string-to-syntax "> b")))))
2374 (eval-when-compile (string-to-syntax "< b")))))
2375
2376(defun doctex-font-lock-syntactic-face-function (state)
2377 ;; Mark DocTeX documentation, which is parsed as a style A comment
2378 ;; starting in column 0.
2379 (if (or (nth 3 state) (nth 7 state)
2380 (not (memq (char-before (nth 8 state))
2381 '(?\n nil))))
2382 ;; Anything else is just as for LaTeX.
2383 (tex-font-lock-syntactic-face-function state)
2384 font-lock-doc-face))
2385
2386(defvar doctex-font-lock-syntactic-keywords
2387 (append
2388 tex-font-lock-syntactic-keywords
2389 ;; For DocTeX comment-in-doc.
2390 `(("\\(\\^\\)\\^A" (1 (doctex-font-lock-^^A))))))
2391
2392(defvar doctex-font-lock-keywords
2393 (append tex-font-lock-keywords
2394 '(("^%<[^>]*>" (0 font-lock-preprocessor-face t)))))
2395
2396;;;###autoload
2397(define-derived-mode doctex-mode latex-mode "DocTeX"
2398 "Major mode to edit DocTeX files."
2399 (setq font-lock-defaults
2400 (cons (append (car font-lock-defaults) '(doctex-font-lock-keywords))
2401 (mapcar
2402 (lambda (x)
2403 (case (car-safe x)
2404 (font-lock-syntactic-keywords
2405 (cons (car x) 'doctex-font-lock-syntactic-keywords))
2406 (font-lock-syntactic-face-function
2407 (cons (car x) 'doctex-font-lock-syntactic-face-function))
2408 (t x)))
2409 (cdr font-lock-defaults)))))
528415e7
RS
2410
2411(run-hooks 'tex-mode-load-hook)
869bff31 2412
49116ac0
JB
2413(provide 'tex-mode)
2414
ab5796a9 2415;;; arch-tag: c0a680b1-63aa-4547-84b9-4193c29c0080
d501f516 2416;;; tex-mode.el ends here