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