posn-object and posn-object-x-y.
[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 1586 t "%r.dvi")
e70ff1af 1587 ("yap %r &" "%r.dvi")
75035a80
SM
1588 ("xdvi %r &" "%r.dvi")
1589 ("advi %r &" "%r.dvi")
1590 ("bibtex %r" "%r.aux" "%r.bbl")
1591 ("makeindex %r" "%r.idx" "%r.ind")
1592 ("texindex %r.??")
1593 ("dvipdfm %r" "%r.dvi" "%r.pdf")
1594 ("dvipdf %r" "%r.dvi" "%r.pdf")
1595 ("dvips %r" "%r.dvi" "%r.ps")
e70ff1af 1596 ("ps2pdf %r.ps" "%r.ps" "%r.pdf")
75035a80
SM
1597 ("gv %r.ps &" "%r.ps")
1598 ("gv %r.pdf &" "%r.pdf")
1599 ("xpdf %r.pdf &" "%r.pdf")
1600 ("lpr %r.ps" "%r.ps"))
1601 "List of commands for `tex-compile'.
1602Each element should be of the form (FORMAT IN OUT) where
1603FORMAT is an expression that evaluates to a string that can contain
1604 - `%r' the main file name without extension.
1605 - `%f' the main file name.
1606IN can be either a string (with the same % escapes in it) indicating
1607 the name of the input file, or t to indicate that the input is all
1608 the TeX files of the document, or nil if we don't know.
1609OUT describes the output file and is either a %-escaped string
1610 or nil to indicate that there is no output file.")
1611
8084f5d8
SM
1612;; defsubst* gives better byte-code than defsubst.
1613(defsubst* tex-string-prefix-p (str1 str2)
1614 "Return non-nil if STR1 is a prefix of STR2"
1615 (eq t (compare-strings str2 nil (length str1) str1 nil nil)))
1616
dd459839
SM
1617(defun tex-guess-main-file (&optional all)
1618 "Find a likely `tex-main-file'.
1619Looks for hints in other buffers in the same directory or in
8084f5d8
SM
1620ALL other buffers. If ALL is `sub' only look at buffers in parent directories
1621of the current buffer."
dd459839
SM
1622 (let ((dir default-directory)
1623 (header-re tex-start-of-header))
1624 (catch 'found
1625 ;; Look for a buffer with `tex-main-file' set.
1626 (dolist (buf (if (consp all) all (buffer-list)))
1627 (with-current-buffer buf
8084f5d8
SM
1628 (when (and (cond
1629 ((null all) (equal dir default-directory))
1630 ((eq all 'sub) (tex-string-prefix-p default-directory dir))
1631 (t))
dd459839
SM
1632 (stringp tex-main-file))
1633 (throw 'found (expand-file-name tex-main-file)))))
1634 ;; Look for a buffer containing the magic `tex-start-of-header'.
1635 (dolist (buf (if (consp all) all (buffer-list)))
1636 (with-current-buffer buf
8084f5d8
SM
1637 (when (and (cond
1638 ((null all) (equal dir default-directory))
1639 ((eq all 'sub) (tex-string-prefix-p default-directory dir))
1640 (t))
dd459839
SM
1641 buffer-file-name
1642 ;; (or (easy-mmode-derived-mode-p 'latex-mode)
1643 ;; (easy-mmode-derived-mode-p 'plain-tex-mode))
1644 (save-excursion
cb30255a
SM
1645 (save-restriction
1646 (widen)
1647 (goto-char (point-min))
95a045bd
SM
1648 (re-search-forward
1649 header-re (+ (point) 10000) t))))
dd459839
SM
1650 (throw 'found (expand-file-name buffer-file-name))))))))
1651
07c16ec4
SM
1652(defun tex-main-file ()
1653 "Return the relative name of the main file."
bdbd9606
SM
1654 (let* ((file (or tex-main-file
1655 ;; Compatibility with AUCTeX.
96c0d9e9
RS
1656 (with-no-warnings
1657 (when (and (boundp 'TeX-master) (stringp TeX-master))
1658 (make-local-variable 'tex-main-file)
1659 (setq tex-main-file TeX-master)))
bdbd9606
SM
1660 ;; Try to guess the main file.
1661 (if (not buffer-file-name)
1662 (error "Buffer is not associated with any file")
1663 (file-relative-name
1664 (if (save-excursion
1665 (goto-char (point-min))
95a045bd
SM
1666 (re-search-forward tex-start-of-header
1667 (+ (point) 10000) t))
bdbd9606
SM
1668 ;; This is the main file.
1669 buffer-file-name
1670 ;; This isn't the main file, let's try to find better,
1671 (or (tex-guess-main-file)
8084f5d8 1672 (tex-guess-main-file 'sub)
bdbd9606 1673 ;; (tex-guess-main-file t)
07c16ec4 1674 buffer-file-name)))))))
e70ff1af
SM
1675 (if (or (file-exists-p file) (string-match "\\.tex\\'" file))
1676 file (concat file ".tex"))))
dd459839 1677
75035a80
SM
1678(defun tex-summarize-command (cmd)
1679 (if (not (stringp cmd)) ""
1680 (mapconcat 'identity
1681 (mapcar (lambda (s) (car (split-string s)))
1682 (split-string cmd "\\s-*\\(?:;\\|&&\\)\\s-*"))
1683 "&")))
1684
1685(defun tex-uptodate-p (file)
1686 "Return non-nil if FILE is not uptodate w.r.t the document source files.
1687FILE is typically the output DVI or PDF file."
1688 ;; We should check all the files included !!!
1689 (and
1690 ;; Clearly, the target must exist.
1691 (file-exists-p file)
1692 ;; And the last run must not have asked for a rerun.
1693 ;; FIXME: this should check that the last run was done on the same file.
1694 (let ((buf (condition-case nil (tex-shell-buf) (error nil))))
1695 (when buf
1696 (with-current-buffer buf
1697 (save-excursion
1698 (goto-char (point-max))
1699 (and (re-search-backward
1700 "(see the transcript file for additional information)" nil t)
1701 (> (save-excursion
1702 (or (re-search-backward "\\[[0-9]+\\]" nil t)
1703 (point-min)))
1704 (save-excursion
1705 (or (re-search-backward "Rerun" nil t)
1706 (point-min)))))))))
1707 ;; And the input files must not have been changed in the meantime.
1708 (let ((files (if (and tex-use-reftex
1709 (fboundp 'reftex-scanning-info-available-p)
1710 (reftex-scanning-info-available-p))
1711 (reftex-all-document-files)
1712 (list (file-name-directory (expand-file-name file)))))
1713 (ignored-dirs-re
1714 (concat
1715 (regexp-opt
1716 (delq nil (mapcar (lambda (s) (if (eq (aref s (1- (length s))) ?/)
1717 (substring s 0 (1- (length s)))))
1718 completion-ignored-extensions))
1719 t) "\\'"))
1720 (uptodate t))
1721 (while (and files uptodate)
1722 (let ((f (pop files)))
e70ff1af
SM
1723 (if (and (file-directory-p f)
1724 ;; Avoid infinite loops.
1725 (not (file-symlink-p f)))
75035a80
SM
1726 (unless (string-match ignored-dirs-re f)
1727 (setq files (nconc
1728 (directory-files f t tex-input-files-re)
1729 files)))
1730 (when (file-newer-than-file-p f file)
1731 (setq uptodate nil)))))
1732 uptodate)))
1733
1734
1735(autoload 'format-spec "format-spec")
1736
1737(defvar tex-executable-cache nil)
1738(defun tex-executable-exists-p (name)
1739 "Like `executable-find' but with a cache."
1740 (let ((cache (assoc name tex-executable-cache)))
1741 (if cache (cdr cache)
1742 (let ((executable (executable-find name)))
1743 (push (cons name executable) tex-executable-cache)
1744 executable))))
1745
1746(defun tex-command-executable (cmd)
1747 (let ((s (if (stringp cmd) cmd (eval (car cmd)))))
1748 (substring s 0 (string-match "[ \t]\\|\\'" s))))
1749
1750(defun tex-command-active-p (cmd fspec)
1751 "Return non-nil if the CMD spec might need to be run."
1752 (let ((in (nth 1 cmd))
1753 (out (nth 2 cmd)))
1754 (if (stringp in)
1755 (let ((file (format-spec in fspec)))
1756 (when (file-exists-p file)
1757 (or (not out)
1758 (file-newer-than-file-p
1759 file (format-spec out fspec)))))
1760 (when (and (eq in t) (stringp out))
1761 (not (tex-uptodate-p (format-spec out fspec)))))))
1762
8084f5d8
SM
1763(defun tex-compile-default (fspec)
1764 "Guess a default command given the format-spec FSPEC."
75035a80
SM
1765 ;; TODO: Learn to do latex+dvips!
1766 (let ((cmds nil)
1767 (unchanged-in nil))
1768 ;; Only consider active commands.
1769 (dolist (cmd tex-compile-commands)
1770 (when (tex-executable-exists-p (tex-command-executable cmd))
1771 (if (tex-command-active-p cmd fspec)
1772 (push cmd cmds)
1773 (push (nth 1 cmd) unchanged-in))))
1774 ;; Remove those commands whose input was considered stable for
1775 ;; some other command (typically if (t . "%.pdf") is inactive
1776 ;; then we're using pdflatex and the fact that the dvi file
1777 ;; is inexistent doesn't matter).
1778 (let ((tmp nil))
1779 (dolist (cmd cmds)
1780 (unless (member (nth 1 cmd) unchanged-in)
1781 (push cmd tmp)))
8084f5d8 1782 ;; Only remove if there's something left.
75035a80 1783 (if tmp (setq cmds tmp)))
8084f5d8
SM
1784 ;; Remove commands whose input is not uptodate either.
1785 (let ((outs (delq nil (mapcar (lambda (x) (nth 2 x)) cmds)))
1786 (tmp nil))
1787 (dolist (cmd cmds)
75035a80 1788 (unless (member (nth 1 cmd) outs)
8084f5d8
SM
1789 (push cmd tmp)))
1790 ;; Only remove if there's something left.
1791 (if tmp (setq cmds tmp)))
75035a80
SM
1792 ;; Select which file we're going to operate on (the latest).
1793 (let ((latest (nth 1 (car cmds))))
1794 (dolist (cmd (prog1 (cdr cmds) (setq cmds (list (car cmds)))))
1795 (if (equal latest (nth 1 cmd))
1796 (push cmd cmds)
1797 (unless (eq latest t) ;Can't beat that!
1798 (if (or (not (stringp latest))
1799 (eq (nth 1 cmd) t)
1800 (and (stringp (nth 1 cmd))
1801 (file-newer-than-file-p
1802 (format-spec (nth 1 cmd) fspec)
1803 (format-spec latest fspec))))
1804 (setq latest (nth 1 cmd) cmds (list cmd)))))))
1805 ;; Expand the command spec into the actual text.
1806 (dolist (cmd (prog1 cmds (setq cmds nil)))
1807 (push (cons (eval (car cmd)) (cdr cmd)) cmds))
1808 ;; Select the favorite command from the history.
1809 (let ((hist tex-compile-history)
8084f5d8 1810 re hist-cmd)
75035a80 1811 (while hist
8084f5d8 1812 (setq hist-cmd (pop hist))
75035a80 1813 (setq re (concat "\\`"
8084f5d8 1814 (regexp-quote (tex-command-executable hist-cmd))
75035a80
SM
1815 "\\([ \t]\\|\\'\\)"))
1816 (dolist (cmd cmds)
8084f5d8
SM
1817 ;; If the hist entry uses the same command and applies to a file
1818 ;; of the same type (e.g. `gv %r.pdf' vs `gv %r.ps'), select cmd.
1819 (and (string-match re (car cmd))
1820 (or (not (string-match "%[fr]\\([-._[:alnum:]]+\\)" (car cmd)))
1821 (string-match (regexp-quote (match-string 1 (car cmd)))
1822 hist-cmd))
1823 (setq hist nil cmds (list cmd)))))
1824 ;; Substitute and return.
1825 (if (and hist-cmd
1826 (string-match (concat "[' \t\"]" (format-spec "%r" fspec)
1827 "\\([;&' \t\"]\\|\\'\\)") hist-cmd))
1828 ;; The history command was already applied to the same file,
1829 ;; so just reuse it.
1830 hist-cmd
1831 (if cmds (format-spec (caar cmds) fspec))))))
75035a80
SM
1832
1833(defun tex-compile (dir cmd)
1834 "Run a command CMD on current TeX buffer's file in DIR."
1835 ;; FIXME: Use time-stamps on files to decide the next op.
1836 (interactive
1837 (let* ((file (tex-main-file))
5e56fb53
SM
1838 (default-directory
1839 (prog1 (file-name-directory (expand-file-name file))
1840 (setq file (file-name-nondirectory file))))
75035a80 1841 (root (file-name-sans-extension file))
75035a80
SM
1842 (fspec (list (cons ?r (comint-quote-filename root))
1843 (cons ?f (comint-quote-filename file))))
8084f5d8 1844 (default (tex-compile-default fspec)))
5e56fb53 1845 (list default-directory
75035a80
SM
1846 (completing-read
1847 (format "Command [%s]: " (tex-summarize-command default))
1848 (mapcar (lambda (x)
1849 (list (format-spec (eval (car x)) fspec)))
1850 tex-compile-commands)
1851 nil nil nil 'tex-compile-history default))))
1852 (save-some-buffers (not compilation-ask-about-save) nil)
1853 (if (tex-shell-running)
1854 (tex-kill-job)
1855 (tex-start-shell))
1856 (tex-send-tex-command cmd dir))
d6709b80
SM
1857
1858(defun tex-start-tex (command file &optional dir)
460e1b7d 1859 "Start a TeX run, using COMMAND on FILE."
6633b891 1860 (let* ((star (string-match "\\*" command))
460e1b7d 1861 (compile-command
6633b891
KH
1862 (if star
1863 (concat (substring command 0 star)
1864 (comint-quote-filename file)
1865 (substring command (1+ star)))
1866 (concat command " "
95a045bd 1867 tex-start-options
9e0ad27a 1868 (if (< 0 (length tex-start-commands))
c3ce7bf4 1869 (concat
9e0ad27a 1870 (shell-quote-argument tex-start-commands) " "))
6633b891 1871 (comint-quote-filename file)))))
bdbd9606
SM
1872 (tex-send-tex-command compile-command dir)))
1873
1874(defun tex-send-tex-command (cmd &optional dir)
b781e739
SS
1875 (unless (or (equal dir (let ((buf (tex-shell-buf-no-error)))
1876 (and buf (with-current-buffer buf
1877 default-directory))))
bdbd9606
SM
1878 (not dir))
1879 (let (shell-dirtrack-verbose)
1880 (tex-send-command tex-shell-cd-command dir)))
1881 (with-current-buffer (process-buffer (tex-send-command cmd))
bdbd9606
SM
1882 (make-local-variable 'compilation-parse-errors-function)
1883 (setq compilation-parse-errors-function 'tex-compilation-parse-errors)
1884 (setq compilation-last-buffer (current-buffer))
1885 (compilation-forget-errors)
1598a961 1886 ;; Don't parse previous compilations.
bdbd9606
SM
1887 (set-marker compilation-parsing-end (1- (point-max))))
1888 (tex-display-shell)
1889 (setq tex-last-buffer-texed (current-buffer)))
460e1b7d 1890\f
1598a961
SM
1891(defvar tex-error-parse-syntax-table
1892 (let ((st (make-syntax-table)))
1893 (modify-syntax-entry ?\( "()" st)
1894 (modify-syntax-entry ?\) ")(" st)
1895 (modify-syntax-entry ?\\ "\\" st)
1896 (modify-syntax-entry ?\{ "_" st)
1897 (modify-syntax-entry ?\} "_" st)
1898 (modify-syntax-entry ?\[ "_" st)
1899 (modify-syntax-entry ?\] "_" st)
1900 ;; Single quotations may appear in errors
1901 (modify-syntax-entry ?\" "_" st)
1902 st)
1903 "Syntax-table used while parsing TeX error messages.")
1904
460e1b7d 1905(defun tex-compilation-parse-errors (limit-search find-at-least)
f05bd645
RS
1906 "Parse the current buffer as TeX error messages.
1907See the variable `compilation-parse-errors-function' for the interface it uses.
1908
1909This function parses only the last TeX compilation.
1910It works on TeX compilations only. It is necessary for that purpose,
1911since TeX does not put file names and line numbers on the same line as
1912for the error messages."
460e1b7d
RS
1913 (require 'thingatpt)
1914 (setq compilation-error-list nil)
1915 (message "Parsing error messages...")
f05bd645
RS
1916 (let ((default-directory ; Perhaps dir has changed meanwhile.
1917 (file-name-directory (buffer-file-name tex-last-buffer-texed)))
f05bd645
RS
1918 found-desired (num-errors-found 0)
1919 last-filename last-linenum last-position
1920 begin-of-error end-of-error)
f05bd645
RS
1921 ;; Don't reparse messages already seen at last parse.
1922 (goto-char compilation-parsing-end)
1923 ;; Parse messages.
1924 (while (and (not (or found-desired (eobp)))
1925 (prog1 (re-search-forward "^! " nil 'move)
1926 (setq begin-of-error (match-beginning 0)
1927 end-of-error (match-end 0)))
1928 (re-search-forward
1929 "^l\\.\\([0-9]+\\) \\(\\.\\.\\.\\)?\\(.*\\)$" nil 'move))
1930 (let* ((this-error (set-marker (make-marker) begin-of-error))
1931 (linenum (string-to-int (match-string 1)))
1932 (error-text (regexp-quote (match-string 3)))
1933 (filename
1934 (save-excursion
ea590e1c
SM
1935 (with-syntax-table tex-error-parse-syntax-table
1936 (backward-up-list 1)
1937 (skip-syntax-forward "(_")
1938 (while (not (file-readable-p (thing-at-point 'filename)))
1939 (skip-syntax-backward "(_")
1940 (backward-up-list 1)
1941 (skip-syntax-forward "(_"))
1942 (thing-at-point 'filename))))
f05bd645
RS
1943 (new-file
1944 (or (null last-filename)
1945 (not (string-equal last-filename filename))))
1946 (error-location
1947 (save-excursion
1948 (if (equal filename (concat tex-zap-file ".tex"))
1949 (set-buffer tex-last-buffer-texed)
1950 (set-buffer (find-file-noselect filename)))
1951 (if new-file
1598a961 1952 (progn (goto-line linenum) (setq last-position nil))
f05bd645
RS
1953 (goto-char last-position)
1954 (forward-line (- linenum last-linenum)))
1955 ;; first try a forward search for the error text,
1956 ;; then a backward search limited by the last error.
1957 (let ((starting-point (point)))
1958 (or (re-search-forward error-text nil t)
1598a961 1959 (re-search-backward error-text last-position t)
f05bd645
RS
1960 (goto-char starting-point)))
1961 (point-marker))))
1962 (goto-char this-error)
1963 (if (and compilation-error-list
1964 (or (and find-at-least
1965 (>= num-errors-found
1966 find-at-least))
1967 (and limit-search
1968 (>= end-of-error limit-search)))
1969 new-file)
1970 (setq found-desired t)
1971 (setq num-errors-found (1+ num-errors-found)
1972 last-filename filename
1973 last-linenum linenum
1974 last-position error-location
1975 compilation-error-list ; Add the new error
1976 (cons (cons this-error error-location)
1977 compilation-error-list))
1978 (goto-char end-of-error)))))
ee13a145 1979 (set-marker compilation-parsing-end (point))
f05bd645 1980 (setq compilation-error-list (nreverse compilation-error-list))
460e1b7d
RS
1981 (message "Parsing error messages...done"))
1982\f
528415e7 1983;;; The commands:
869bff31 1984
1985(defun tex-region (beg end)
1986 "Run TeX on the current region, via a temporary file.
1987The file's name comes from the variable `tex-zap-file' and the
1988variable `tex-directory' says where to put it.
1989
1990If the buffer has a header, the header is given to TeX before the
1991region itself. The buffer's header is all lines between the strings
1992defined by `tex-start-of-header' and `tex-end-of-header' inclusive.
1993The header must start in the first 100 lines of the buffer.
1994
1995The value of `tex-trailer' is given to TeX as input after the region.
1996
1997The value of `tex-command' specifies the command to use to run TeX."
1998 (interactive "r")
1999 (if (tex-shell-running)
2000 (tex-kill-job)
2001 (tex-start-shell))
2002 (or tex-zap-file
2003 (setq tex-zap-file (tex-generate-zap-file-name)))
6d34c59f
RS
2004 ;; Temp file will be written and TeX will be run in zap-directory.
2005 ;; If the TEXINPUTS file has relative directories or if the region has
2006 ;; \input of files, this must be the same directory as the file for
2007 ;; TeX to access the correct inputs. That's why it's safest if
2008 ;; tex-directory is ".".
2009 (let* ((zap-directory
528415e7 2010 (file-name-as-directory (expand-file-name tex-directory)))
d6709b80
SM
2011 (tex-out-file (expand-file-name (concat tex-zap-file ".tex")
2012 zap-directory)))
0d548e5d
RS
2013 ;; Don't delete temp files if we do the same buffer twice in a row.
2014 (or (eq (current-buffer) tex-last-buffer-texed)
2015 (tex-delete-last-temp-files t))
869bff31 2016 ;; Write the new temp file.
2017 (save-excursion
2018 (save-restriction
2019 (widen)
2020 (goto-char (point-min))
2021 (forward-line 100)
2022 (let ((search-end (point))
6d34c59f
RS
2023 (default-directory zap-directory)
2024 (already-output 0))
869bff31 2025 (goto-char (point-min))
6d34c59f 2026
725b7428
RS
2027 ;; Maybe copy first line, such as `\input texinfo', to temp file.
2028 (and tex-first-line-header-regexp
2029 (looking-at tex-first-line-header-regexp)
bed1b0c8 2030 (write-region (point)
6d34c59f
RS
2031 (progn (forward-line 1)
2032 (setq already-output (point)))
725b7428
RS
2033 tex-out-file nil nil))
2034
6d34c59f
RS
2035 ;; Write out the header, if there is one,
2036 ;; and any of the specified region which extends before it.
2037 ;; But don't repeat anything already written.
898b9ac1 2038 (if (re-search-forward tex-start-of-header search-end t)
6d34c59f 2039 (let (hbeg)
869bff31 2040 (beginning-of-line)
2041 (setq hbeg (point)) ;mark beginning of header
898b9ac1 2042 (if (re-search-forward tex-end-of-header nil t)
6d34c59f
RS
2043 (let (hend)
2044 (forward-line 1)
bed1b0c8 2045 (setq hend (point)) ;mark end of header
6d34c59f
RS
2046 (write-region (max (min hbeg beg) already-output)
2047 hend
2048 tex-out-file
2049 (not (zerop already-output)) nil)
2050 (setq already-output hend)))))
2051
2052 ;; Write out the specified region
2053 ;; (but don't repeat anything already written).
2054 (write-region (max beg already-output) end
2055 tex-out-file
2056 (not (zerop already-output)) nil))
2057 ;; Write the trailer, if any.
2058 ;; Precede it with a newline to make sure it
2059 ;; is not hidden in a comment.
2060 (if tex-trailer
2061 (write-region (concat "\n" tex-trailer) nil
2062 tex-out-file t nil))))
528415e7
RS
2063 ;; Record the file name to be deleted afterward.
2064 (setq tex-last-temp-file tex-out-file)
f05bd645
RS
2065 ;; Use a relative file name here because (1) the proper dir
2066 ;; is already current, and (2) the abs file name is sometimes
2067 ;; too long and can make tex crash.
d6709b80
SM
2068 (tex-start-tex tex-command (concat tex-zap-file ".tex") zap-directory)
2069 (setq tex-print-file tex-out-file)))
869bff31 2070
2071(defun tex-buffer ()
2072 "Run TeX on current buffer. See \\[tex-region] for more information.
528415e7
RS
2073Does not save the buffer, so it's useful for trying experimental versions.
2074See \\[tex-file] for an alternative."
869bff31 2075 (interactive)
2076 (tex-region (point-min) (point-max)))
2077
2078(defun tex-file ()
2079 "Prompt to save all buffers and run TeX (or LaTeX) on current buffer's file.
2080This function is more useful than \\[tex-buffer] when you need the
2081`.aux' file of LaTeX to have the correct name."
2082 (interactive)
7abc9add
SS
2083 (when tex-offer-save
2084 (save-some-buffers))
d6709b80 2085 (let* ((source-file (tex-main-file))
07c16ec4 2086 (file-dir (file-name-directory (expand-file-name source-file))))
869bff31 2087 (if (tex-shell-running)
2088 (tex-kill-job)
2089 (tex-start-shell))
d6709b80 2090 (tex-start-tex tex-command source-file file-dir)
f05bd645 2091 (setq tex-print-file (expand-file-name source-file))))
869bff31 2092
2093(defun tex-generate-zap-file-name ()
2094 "Generate a unique name suitable for use as a file name."
2095 ;; Include the shell process number and host name
2096 ;; in case there are multiple shells (for same or different user).
f5cdb851
KH
2097 ;; Dec 1998: There is a report that some versions of xdvi
2098 ;; don't work with file names that start with #.
5616ee46 2099 (format "_TZ_%d-%s"
869bff31 2100 (process-id (get-buffer-process "*tex-shell*"))
07c16ec4 2101 (subst-char-in-string ?. ?- (system-name))))
869bff31 2102
2103;; This will perhaps be useful for modifying TEXINPUTS.
2104;; Expand each file name, separated by colons, in the string S.
2105(defun tex-expand-files (s)
2106 (let (elts (start 0))
2107 (while (string-match ":" s start)
2108 (setq elts (cons (substring s start (match-beginning 0)) elts))
2109 (setq start (match-end 0)))
2110 (or (= start 0)
2111 (setq elts (cons (substring s start) elts)))
c0df1972
SM
2112 (mapconcat (lambda (elt)
2113 (if (= (length elt) 0) elt (expand-file-name elt)))
5616ee46 2114 (nreverse elts) ":")))
869bff31 2115
2116(defun tex-shell-running ()
713f7b15 2117 (let ((proc (get-process "tex-shell")))
b781e739
SS
2118 (when proc
2119 (if (and (eq (process-status proc) 'run)
2120 (buffer-live-p (process-buffer proc)))
2121 ;; return the TeX process on success
2122 proc
2123 ;; get rid of the process permanently
2124 ;; this should get rid of the annoying w32 problem with
2125 ;; dead tex-shell buffer and live process
2126 (delete-process proc)))))
869bff31 2127
2128(defun tex-kill-job ()
2129 "Kill the currently running TeX job."
2130 (interactive)
b781e739 2131 ;; `quit-process' leads to core dumps of the tex process (except if
bed1b0c8
RS
2132 ;; coredumpsize has limit 0kb as on many environments). One would
2133 ;; like to use (kill-process proc 'lambda), however that construct
2134 ;; does not work on some systems and kills the shell itself.
b781e739
SS
2135 (let ((proc (get-process "tex-shell")))
2136 (when proc (quit-process proc t))))
869bff31 2137
2138(defun tex-recenter-output-buffer (linenum)
2139 "Redisplay buffer of TeX job output so that most recent output can be seen.
2140The last line of the buffer is displayed on
2141line LINE of the window, or centered if LINE is nil."
2142 (interactive "P")
2143 (let ((tex-shell (get-buffer "*tex-shell*"))
23b64225 2144 (window))
869bff31 2145 (if (null tex-shell)
2146 (message "No TeX output buffer")
23b64225
RS
2147 (setq window (display-buffer tex-shell))
2148 (save-selected-window
2149 (select-window window)
2150 (bury-buffer tex-shell)
2151 (goto-char (point-max))
2152 (recenter (if linenum
2153 (prefix-numeric-value linenum)
2154 (/ (window-height) 2)))))))
869bff31 2155
528415e7 2156(defun tex-print (&optional alt)
869bff31 2157 "Print the .dvi file made by \\[tex-region], \\[tex-buffer] or \\[tex-file].
1433a222
CZ
2158Runs the shell command defined by `tex-dvi-print-command'. If prefix argument
2159is provided, use the alternative command, `tex-alt-dvi-print-command'."
528415e7 2160 (interactive "P")
869bff31 2161 (let ((print-file-name-dvi (tex-append tex-print-file ".dvi"))
2162 test-name)
2163 (if (and (not (equal (current-buffer) tex-last-buffer-texed))
45c3304d
RS
2164 (buffer-file-name)
2165 ;; Check that this buffer's printed file is up to date.
869bff31 2166 (file-newer-than-file-p
2167 (setq test-name (tex-append (buffer-file-name) ".dvi"))
45c3304d 2168 (buffer-file-name)))
869bff31 2169 (setq print-file-name-dvi test-name))
528415e7
RS
2170 (if (not (file-exists-p print-file-name-dvi))
2171 (error "No appropriate `.dvi' file could be found")
460e1b7d
RS
2172 (if (tex-shell-running)
2173 (tex-kill-job)
2174 (tex-start-shell))
528415e7 2175 (tex-send-command
bed1b0c8 2176 (if alt tex-alt-dvi-print-command tex-dvi-print-command)
602503c5
RS
2177 (shell-quote-argument
2178 print-file-name-dvi)
2179 t))))
869bff31 2180
cf6d6e8a
RS
2181(defun tex-alt-print ()
2182 "Print the .dvi file made by \\[tex-region], \\[tex-buffer] or \\[tex-file].
002b0d00 2183Runs the shell command defined by `tex-alt-dvi-print-command'."
cf6d6e8a
RS
2184 (interactive)
2185 (tex-print t))
2186
869bff31 2187(defun tex-view ()
2188 "Preview the last `.dvi' file made by running TeX under Emacs.
2189This means, made using \\[tex-region], \\[tex-buffer] or \\[tex-file].
2b7971c9
RS
2190The variable `tex-dvi-view-command' specifies the shell command for preview.
2191You must set that variable yourself before using this command,
2192because there is no standard value that would generally work."
869bff31 2193 (interactive)
2b7971c9
RS
2194 (or tex-dvi-view-command
2195 (error "You must set `tex-dvi-view-command'"))
746c30e2 2196 (let ((tex-dvi-print-command (eval tex-dvi-view-command)))
869bff31 2197 (tex-print)))
2198
2199(defun tex-append (file-name suffix)
2200 "Append to FILENAME the suffix SUFFIX, using same algorithm TeX uses.
cf6d6e8a 2201Pascal-based TeX scans for the first period, C TeX uses the last.
869bff31 2202No period is retained immediately before SUFFIX,
2203so normally SUFFIX starts with one."
2204 (if (stringp file-name)
cf6d6e8a
RS
2205 (let ((file (file-name-nondirectory file-name))
2206 trial-name)
6da9bbd6 2207 ;; Try splitting on last period.
7d0ca249
RS
2208 ;; The first-period split can get fooled when two files
2209 ;; named a.tex and a.b.tex are both tex'd;
2210 ;; the last-period split must be right if it matches at all.
cf6d6e8a
RS
2211 (setq trial-name
2212 (concat (file-name-directory file-name)
2213 (substring file 0
7d0ca249 2214 (string-match "\\.[^.]*$" file))
cf6d6e8a
RS
2215 suffix))
2216 (if (or (file-exists-p trial-name)
2217 (file-exists-p (concat trial-name ".aux"))) ;for BibTeX files
2218 trial-name
7d0ca249 2219 ;; Not found, so split on first period.
cf6d6e8a
RS
2220 (concat (file-name-directory file-name)
2221 (substring file 0
7d0ca249 2222 (string-match "\\." file))
cf6d6e8a 2223 suffix)))
869bff31 2224 " "))
2225
2226(defun tex-show-print-queue ()
2227 "Show the print queue that \\[tex-print] put your job on.
1433a222 2228Runs the shell command defined by `tex-show-queue-command'."
869bff31 2229 (interactive)
2230 (if (tex-shell-running)
2231 (tex-kill-job)
2232 (tex-start-shell))
51b2c841
RS
2233 (tex-send-command tex-show-queue-command)
2234 (tex-display-shell))
869bff31 2235
2236(defun tex-bibtex-file ()
2237 "Run BibTeX on the current buffer's file."
2238 (interactive)
2239 (if (tex-shell-running)
2240 (tex-kill-job)
2241 (tex-start-shell))
e6b0b773
MR
2242 (let (shell-dirtrack-verbose
2243 (tex-out-file
869bff31 2244 (tex-append (file-name-nondirectory (buffer-file-name)) ""))
2245 (file-dir (file-name-directory (buffer-file-name))))
528415e7 2246 (tex-send-command tex-shell-cd-command file-dir)
51b2c841
RS
2247 (tex-send-command tex-bibtex-command tex-out-file))
2248 (tex-display-shell))
ea590e1c
SM
2249\f
2250;;;;
2251;;;; LaTeX indentation
2252;;;;
2253
2254(defvar tex-indent-allhanging t)
2255(defvar tex-indent-arg 4)
2256(defvar tex-indent-basic 2)
2257(defvar tex-indent-item tex-indent-basic)
2258(defvar tex-indent-item-re "\\\\\\(bib\\)?item\\>")
2259
8a591d52
SM
2260(defvar tex-latex-indent-syntax-table
2261 (let ((st (make-syntax-table tex-mode-syntax-table)))
2262 (modify-syntax-entry ?$ "." st)
2263 (modify-syntax-entry ?\( "." st)
2264 (modify-syntax-entry ?\) "." st)
2265 st)
2266 "Syntax table used while computing indentation.")
ea590e1c
SM
2267
2268(defun latex-indent (&optional arg)
7afecb99
SM
2269 (if (and (eq (get-text-property (line-beginning-position) 'face)
2270 tex-verbatim-face))
a3d80d4a 2271 'noindent
7afecb99
SM
2272 (with-syntax-table tex-latex-indent-syntax-table
2273 ;; TODO: Rather than ignore $, we should try to be more clever about it.
2274 (let ((indent
2275 (save-excursion
2276 (beginning-of-line)
2277 (latex-find-indent))))
2278 (if (< indent 0) (setq indent 0))
2279 (if (<= (current-column) (current-indentation))
2280 (indent-line-to indent)
2281 (save-excursion (indent-line-to indent)))))))
ea590e1c
SM
2282
2283(defun latex-find-indent (&optional virtual)
2284 "Find the proper indentation of text after point.
2285VIRTUAL if non-nil indicates that we're only trying to find the indentation
2286 in order to determine the indentation of something else.
2287There might be text before point."
2288 (save-excursion
2289 (skip-chars-forward " \t")
2290 (or
7afecb99
SM
2291 ;; Stick the first line at column 0.
2292 (and (= (point-min) (line-beginning-position)) 0)
ea590e1c 2293 ;; Trust the current indentation, if such info is applicable.
7afecb99
SM
2294 (and virtual (save-excursion (skip-chars-backward " \t&") (bolp))
2295 (current-column))
2296 ;; Stick verbatim environments to the left margin.
2297 (and (looking-at "\\\\\\(begin\\|end\\) *{\\([^\n}]+\\)")
2298 (member (match-string 2) tex-verbatim-environments)
2299 0)
ea590e1c
SM
2300 ;; Put leading close-paren where the matching open brace would be.
2301 (and (eq (latex-syntax-after) ?\))
2302 (ignore-errors
2303 (save-excursion
2304 (latex-skip-close-parens)
2305 (latex-backward-sexp-1)
2306 (latex-find-indent 'virtual))))
2307 ;; Default (maybe an argument)
2308 (let ((pos (point))
2309 (char (char-after))
2310 ;; Outdent \item if necessary.
2311 (indent (if (looking-at tex-indent-item-re) (- tex-indent-item) 0))
2312 up-list-pos)
2313 ;; Find the previous point which determines our current indentation.
2314 (condition-case err
2315 (progn
2316 (latex-backward-sexp-1)
2317 (while (> (current-column) (current-indentation))
2318 (latex-backward-sexp-1)))
2319 (scan-error
2320 (setq up-list-pos (nth 2 err))))
8908cf40
SM
2321 (cond
2322 ((= (point-min) pos) 0) ; We're really just indenting the first line.
2323 ((integerp up-list-pos)
2324 ;; Have to indent relative to the open-paren.
2325 (goto-char up-list-pos)
2326 (if (and (not tex-indent-allhanging)
2327 (> pos (progn (latex-down-list)
2328 (forward-comment (point-max))
2329 (point))))
7afecb99 2330 ;; Align with the first element after the open-paren.
8908cf40
SM
2331 (current-column)
2332 ;; We're the first element after a hanging brace.
2333 (goto-char up-list-pos)
2334 (+ indent tex-indent-basic (latex-find-indent 'virtual))))
2335 ;; We're now at the "beginning" of a line.
2336 ((not (and (not virtual) (eq (char-after) ?\\)))
2337 ;; Nothing particular here: just keep the same indentation.
2338 (+ indent (current-column)))
2339 ;; We're now looking at a macro call.
7afecb99
SM
2340 ((looking-at tex-indent-item-re)
2341 ;; Indenting relative to an item, have to re-add the outdenting.
8908cf40
SM
2342 (+ indent (current-column) tex-indent-item))
2343 (t
2344 (let ((col (current-column)))
2345 (if (not (eq (char-syntax char) ?\())
2346 ;; If the first char was not an open-paren, there's
2347 ;; a risk that this is really not an argument to the
2348 ;; macro at all.
7afecb99
SM
2349 (+ indent col)
2350 (forward-sexp 1)
2351 (if (< (line-end-position)
2352 (save-excursion (forward-comment (point-max))
2353 (point)))
8908cf40
SM
2354 ;; we're indenting the first argument.
2355 (min (current-column) (+ tex-indent-arg col))
2356 (skip-syntax-forward " ")
2357 (current-column))))))))))
a3d80d4a
SM
2358;;; DocTeX support
2359
2360(defun doctex-font-lock-^^A ()
2361 (if (eq (char-after (line-beginning-position)) ?\%)
2362 (progn
2363 (put-text-property
2364 (1- (match-beginning 1)) (match-beginning 1)
2365 'syntax-table
2366 (if (= (1+ (line-beginning-position)) (match-beginning 1))
2367 ;; The `%' is a single-char comment, which Emacs
2368 ;; syntax-table can't deal with. We could turn it
2369 ;; into a non-comment, or use `\n%' or `%^' as the comment.
2370 ;; Instead, we include it in the ^^A comment.
2371 (eval-when-compile (string-to-syntax "< b"))
2372 (eval-when-compile (string-to-syntax ">"))))
2373 (let ((end (line-end-position)))
2374 (if (< end (point-max))
2375 (put-text-property
2376 end (1+ end)
2377 'syntax-table
2378 (eval-when-compile (string-to-syntax "> b")))))
2379 (eval-when-compile (string-to-syntax "< b")))))
2380
2381(defun doctex-font-lock-syntactic-face-function (state)
2382 ;; Mark DocTeX documentation, which is parsed as a style A comment
2383 ;; starting in column 0.
2384 (if (or (nth 3 state) (nth 7 state)
2385 (not (memq (char-before (nth 8 state))
2386 '(?\n nil))))
2387 ;; Anything else is just as for LaTeX.
2388 (tex-font-lock-syntactic-face-function state)
2389 font-lock-doc-face))
2390
2391(defvar doctex-font-lock-syntactic-keywords
2392 (append
2393 tex-font-lock-syntactic-keywords
2394 ;; For DocTeX comment-in-doc.
2395 `(("\\(\\^\\)\\^A" (1 (doctex-font-lock-^^A))))))
2396
2397(defvar doctex-font-lock-keywords
2398 (append tex-font-lock-keywords
2399 '(("^%<[^>]*>" (0 font-lock-preprocessor-face t)))))
2400
2401;;;###autoload
2402(define-derived-mode doctex-mode latex-mode "DocTeX"
2403 "Major mode to edit DocTeX files."
2404 (setq font-lock-defaults
2405 (cons (append (car font-lock-defaults) '(doctex-font-lock-keywords))
2406 (mapcar
2407 (lambda (x)
2408 (case (car-safe x)
2409 (font-lock-syntactic-keywords
2410 (cons (car x) 'doctex-font-lock-syntactic-keywords))
2411 (font-lock-syntactic-face-function
2412 (cons (car x) 'doctex-font-lock-syntactic-face-function))
2413 (t x)))
2414 (cdr font-lock-defaults)))))
528415e7
RS
2415
2416(run-hooks 'tex-mode-load-hook)
869bff31 2417
49116ac0
JB
2418(provide 'tex-mode)
2419
ab5796a9 2420;;; arch-tag: c0a680b1-63aa-4547-84b9-4193c29c0080
d501f516 2421;;; tex-mode.el ends here