Some fixes to follow coding conventions in files maintained by FSF.
[emacs.git] / lisp / textmodes / tex-mode.el
blob07dcee289b2ed77f6a0752af1d68e2c77a0ae254
1 ;;; tex-mode.el --- TeX, LaTeX, and SliTeX mode commands
3 ;; Copyright (C) 1985, 86, 89, 92, 94, 95, 96, 97, 98, 1999
4 ;; Free Software Foundation, Inc.
6 ;; Maintainer: FSF
7 ;; Keywords: tex
9 ;; Contributions over the years by William F. Schelter, Dick King,
10 ;; Stephen Gildea, Michael Prange, Jacob Gore, and Edward M. Reingold.
12 ;; This file is part of GNU Emacs.
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.
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.
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.
29 ;;; Commentary:
31 ;;; Code:
33 ;; Pacify the byte-compiler
34 (eval-when-compile
35 (require 'compare-w)
36 (require 'cl)
37 (require 'skeleton))
39 (require 'shell)
40 (require 'compile)
42 (defgroup tex-file nil
43 "TeX files and directories"
44 :prefix "tex-"
45 :group 'tex)
47 (defgroup tex-run nil
48 "Running external commands from TeX mode"
49 :prefix "tex-"
50 :group 'tex)
52 (defgroup tex-view nil
53 "Viewing and printing TeX files"
54 :prefix "tex-"
55 :group 'tex)
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)
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)
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)
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)
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)
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)
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)
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)
122 ;;;###autoload
123 (defcustom tex-start-options-string "\\nonstopmode\\input"
124 "*TeX options to use when running TeX.
125 These precede the input file name. If nil, TeX runs without option.
126 See the documentation of `tex-command'."
127 :type '(radio (const :tag "Interactive \(nil\)" nil)
128 (const :tag "Nonstop \(\"\\nonstopmode\\input\"\)"
129 "\\nonstopmode\\input")
130 (string :tag "String at your choice"))
131 :group 'tex-run
132 :version "20.4")
134 (defvar standard-latex-block-names
135 '("abstract" "array" "center" "description"
136 "displaymath" "document" "enumerate" "eqnarray"
137 "eqnarray*" "equation" "figure" "figure*"
138 "flushleft" "flushright" "itemize" "letter"
139 "list" "minipage" "picture" "quotation"
140 "quote" "slide" "sloppypar" "tabbing"
141 "table" "table*" "tabular" "tabular*"
142 "thebibliography" "theindex*" "titlepage" "trivlist"
143 "verbatim" "verbatim*" "verse" "math")
144 "Standard LaTeX block names.")
146 ;;;###autoload
147 (defcustom latex-block-names nil
148 "*User defined LaTeX block names.
149 Combined with `standard-latex-block-names' for minibuffer completion."
150 :type '(repeat string)
151 :group 'tex-run)
153 ;;;###autoload
154 (defcustom tex-bibtex-command "bibtex"
155 "*Command used by `tex-bibtex-file' to gather bibliographic data.
156 If this string contains an asterisk (`*'), that is replaced by the file name;
157 otherwise, the file name, preceded by blank, is added at the end."
158 :type 'string
159 :group 'tex-run)
161 ;;;###autoload
162 (defcustom tex-dvi-print-command "lpr -d"
163 "*Command used by \\[tex-print] to print a .dvi file.
164 If this string contains an asterisk (`*'), that is replaced by the file name;
165 otherwise, the file name, preceded by blank, is added at the end."
166 :type 'string
167 :group 'tex-view)
169 ;;;###autoload
170 (defcustom tex-alt-dvi-print-command "lpr -d"
171 "*Command used by \\[tex-print] with a prefix arg to print a .dvi file.
172 If this string contains an asterisk (`*'), that is replaced by the file name;
173 otherwise, the file name, preceded by blank, is added at the end.
175 If two printers are not enough of a choice, you can set the variable
176 `tex-alt-dvi-print-command' to an expression that asks what you want;
177 for example,
179 (setq tex-alt-dvi-print-command
180 '(format \"lpr -P%s\" (read-string \"Use printer: \")))
182 would tell \\[tex-print] with a prefix argument to ask you which printer to
183 use."
184 :type '(choice (string :tag "Command")
185 (sexp :tag "Expression"))
186 :group 'tex-view)
188 ;;;###autoload
189 (defcustom tex-dvi-view-command nil
190 "*Command used by \\[tex-view] to display a `.dvi' file.
191 If this string contains an asterisk (`*'), that is replaced by the file name;
192 otherwise, the file name, preceded by blank, is added at the end.
194 This can be set conditionally so that the previewer used is suitable for the
195 window system being used. For example,
197 (setq tex-dvi-view-command
198 (if (eq window-system 'x) \"xdvi\" \"dvi2tty * | cat -s\"))
200 would tell \\[tex-view] to use xdvi under X windows and to use dvi2tty
201 otherwise."
202 :type '(choice (const nil) string)
203 :group 'tex-view)
205 ;;;###autoload
206 (defcustom tex-show-queue-command "lpq"
207 "*Command used by \\[tex-show-print-queue] to show the print queue.
208 Should show the queue(s) that \\[tex-print] puts jobs on."
209 :type 'string
210 :group 'tex-view)
212 ;;;###autoload
213 (defcustom tex-default-mode 'latex-mode
214 "*Mode to enter for a new file that might be either TeX or LaTeX.
215 This variable is used when it can't be determined whether the file
216 is plain TeX or LaTeX or what because the file contains no commands.
217 Normally set to either `plain-tex-mode' or `latex-mode'."
218 :type 'function
219 :group 'tex)
221 ;;;###autoload
222 (defcustom tex-open-quote "``"
223 "*String inserted by typing \\[tex-insert-quote] to open a quotation."
224 :type 'string
225 :group 'tex)
227 ;;;###autoload
228 (defcustom tex-close-quote "''"
229 "*String inserted by typing \\[tex-insert-quote] to close a quotation."
230 :type 'string
231 :group 'tex)
233 (defvar tex-last-temp-file nil
234 "Latest temporary file generated by \\[tex-region] and \\[tex-buffer].
235 Deleted when the \\[tex-region] or \\[tex-buffer] is next run, or when the
236 tex shell terminates.")
238 (defvar tex-command nil
239 "*Command to run TeX.
240 If this string contains an asterisk \(`*'\), that is replaced by the file name\;
241 otherwise the \(shell-quoted\) value of `tex-start-options-string' and
242 the file name are added at the end, with blanks as separators.
244 In TeX, LaTeX, and SliTeX Mode this variable becomes buffer local.
245 In these modes, use \\[set-variable] if you want to change it for the
246 current buffer.")
248 (defvar tex-trailer nil
249 "String appended after the end of a region sent to TeX by \\[tex-region].")
251 (defvar tex-start-of-header nil
252 "Regular expression used by \\[tex-region] to find start of file's header.")
254 (defvar tex-end-of-header nil
255 "Regular expression used by \\[tex-region] to find end of file's header.")
257 (defvar tex-shell-cd-command "cd"
258 "Command to give to shell running TeX to change directory.
259 The value of `tex-directory' is appended to this, separated by a space.")
261 (defvar tex-zap-file nil
262 "Temporary file name used for text being sent as input to TeX.
263 Should be a simple file name with no extension or directory specification.")
265 (defvar tex-last-buffer-texed nil
266 "Buffer which was last TeXed.")
268 (defvar tex-print-file nil
269 "File name that \\[tex-print] prints.
270 Set by \\[tex-region], \\[tex-buffer], and \\[tex-file].")
272 (easy-mmode-defsyntax tex-mode-syntax-table
273 '((?% . "<")
274 (?\n . ">")
275 (?\f . ">")
276 (?\C-@ . "w")
277 (?' . "w")
278 (?@ . "_")
279 (?* . "_")
280 (?\t . " ")
281 (?~ . " ")
282 (?$ . "$$")
283 (?\\ . "/")
284 (?\" . ".")
285 (?& . ".")
286 (?_ . ".")
287 (?^ . "."))
288 "Syntax table used while in TeX mode.")
290 ;;;;
291 ;;;; Imenu support
292 ;;;;
294 (defcustom latex-imenu-indent-string ". "
295 "*String to add repeated in front of nested sectional units for Imenu.
296 An alternative value is \" . \", if you use a font with a narrow period."
297 :type 'string
298 :group 'tex)
300 (defvar latex-section-alist
301 '(("part" . 0) ("chapter" . 1)
302 ("section" . 2) ("subsection" . 3)
303 ("subsubsection" . 4)
304 ("paragraph" . 5) ("subparagraph" . 6)))
306 (defvar latex-metasection-list
307 '("documentstyle" "documentclass"
308 "begin{document}" "end{document}"
309 "appendix" "frontmatter" "mainmatter" "backmatter"))
311 (defun latex-imenu-create-index ()
312 "Generate an alist for imenu from a LaTeX buffer."
313 (let ((section-regexp
314 (concat "\\\\" (regexp-opt (mapcar 'car latex-section-alist) t)
315 "\\*?[ \t]*{"))
316 (metasection-regexp
317 (concat "\\\\" (regexp-opt latex-metasection-list t)))
318 i0 menu case-fold-search)
319 (save-excursion
320 ;; Find the top-most level in this file but don't allow it to be
321 ;; any deeper than "section" (which is top-level in an article).
322 (goto-char (point-min))
323 (if (search-forward-regexp "\\\\part\\*?[ \t]*{" nil t)
324 (setq i0 0)
325 (if (search-forward-regexp "\\\\chapter\\*?[ \t]*{" nil t)
326 (setq i0 1)
327 (setq i0 2)))
329 ;; Look for chapters and sections.
330 (goto-char (point-min))
331 (while (search-forward-regexp section-regexp nil t)
332 (let ((start (match-beginning 0))
333 (here (point))
334 (i (cdr (assoc (buffer-substring-no-properties
335 (match-beginning 1)
336 (match-end 1))
337 latex-section-alist))))
338 (backward-char 1)
339 (condition-case err
340 (progn
341 ;; Using sexps allows some use of matching {...} inside
342 ;; titles.
343 (forward-sexp 1)
344 (push (cons (concat (apply 'concat
345 (make-list
346 (max 0 (- i i0))
347 latex-imenu-indent-string))
348 (buffer-substring-no-properties
349 here (1- (point))))
350 start)
351 menu))
352 (error nil))))
354 ;; Look for included material.
355 (goto-char (point-min))
356 (while (search-forward-regexp
357 "\\\\\\(include\\|input\\|verbatiminput\\|bibliography\\)\
358 \[ \t]*{\\([^}\n]+\\)}"
359 nil t)
360 (push (cons (concat "<<" (buffer-substring-no-properties
361 (match-beginning 2)
362 (match-end 2))
363 (if (= (char-after (match-beginning 1)) ?b)
364 ".bbl"
365 ".tex"))
366 (match-beginning 0))
367 menu))
369 ;; Look for \frontmatter, \mainmatter, \backmatter, and \appendix.
370 (goto-char (point-min))
371 (while (search-forward-regexp metasection-regexp nil t)
372 (push (cons "--" (match-beginning 0)) menu))
374 ;; Sort in increasing buffer position order.
375 (sort menu (function (lambda (a b) (< (cdr a) (cdr b))))))))
377 ;;;;
378 ;;;; Outline support
379 ;;;;
381 (defvar latex-outline-regexp
382 (concat "\\\\"
383 (regexp-opt (append latex-metasection-list
384 (mapcar 'car latex-section-alist)) t)))
386 (defun latex-outline-level ()
387 (if (looking-at latex-outline-regexp)
388 (1+ (or (cdr (assoc (match-string 1) latex-section-alist)) -1))
389 1000))
391 ;;;;
392 ;;;; Font-Lock support
393 ;;;;
395 ;(defvar tex-font-lock-keywords
396 ; ;; Regexps updated with help from Ulrik Dickow <dickow@nbi.dk>.
397 ; '(("\\\\\\(begin\\|end\\|newcommand\\){\\([a-zA-Z0-9\\*]+\\)}"
398 ; 2 font-lock-function-name-face)
399 ; ("\\\\\\(cite\\|label\\|pageref\\|ref\\){\\([^} \t\n]+\\)}"
400 ; 2 font-lock-constant-face)
401 ; ;; It seems a bit dubious to use `bold' and `italic' faces since we might
402 ; ;; not be able to display those fonts.
403 ; ("{\\\\bf\\([^}]+\\)}" 1 'bold keep)
404 ; ("{\\\\\\(em\\|it\\|sl\\)\\([^}]+\\)}" 2 'italic keep)
405 ; ("\\\\\\([a-zA-Z@]+\\|.\\)" . font-lock-keyword-face)
406 ; ("^[ \t\n]*\\\\def[\\\\@]\\(\\w+\\)" 1 font-lock-function-name-face keep))
407 ; ;; Rewritten and extended for LaTeX2e by Ulrik Dickow <dickow@nbi.dk>.
408 ; '(("\\\\\\(begin\\|end\\|newcommand\\){\\([a-zA-Z0-9\\*]+\\)}"
409 ; 2 font-lock-function-name-face)
410 ; ("\\\\\\(cite\\|label\\|pageref\\|ref\\){\\([^} \t\n]+\\)}"
411 ; 2 font-lock-constant-face)
412 ; ("^[ \t]*\\\\def\\\\\\(\\(\\w\\|@\\)+\\)" 1 font-lock-function-name-face)
413 ; "\\\\\\([a-zA-Z@]+\\|.\\)"
414 ; ;; It seems a bit dubious to use `bold' and `italic' faces since we might
415 ; ;; not be able to display those fonts.
416 ; ;; LaTeX2e: \emph{This is emphasized}.
417 ; ("\\\\emph{\\([^}]+\\)}" 1 'italic keep)
418 ; ;; LaTeX2e: \textbf{This is bold}, \textit{...}, \textsl{...}
419 ; ("\\\\text\\(\\(bf\\)\\|it\\|sl\\){\\([^}]+\\)}"
420 ; 3 (if (match-beginning 2) 'bold 'italic) keep)
421 ; ;; Old-style bf/em/it/sl. Stop at `\\' and un-escaped `&', for tables.
422 ; ("\\\\\\(\\(bf\\)\\|em\\|it\\|sl\\)\\>\\(\\([^}&\\]\\|\\\\[^\\]\\)+\\)"
423 ; 3 (if (match-beginning 2) 'bold 'italic) keep))
425 ;; Rewritten with the help of Alexandra Bac <abac@welcome.disi.unige.it>.
426 (defconst tex-font-lock-keywords-1
427 (eval-when-compile
428 (let* (;; Names of commands whose arg should be fontified as heading, etc.
429 (headings (regexp-opt
430 '("title" "begin" "end" "chapter" "part"
431 "section" "subsection" "subsubsection"
432 "paragraph" "subparagraph" "subsubparagraph"
433 "newcommand" "renewcommand" "newenvironment"
434 "newtheorem")
436 (variables (regexp-opt
437 '("newcounter" "newcounter*" "setcounter" "addtocounter"
438 "setlength" "addtolength" "settowidth")
440 (includes (regexp-opt
441 '("input" "include" "includeonly" "bibliography"
442 "epsfig" "psfig" "epsf" "nofiles" "usepackage"
443 "documentstyle" "documentclass" "verbatiminput"
444 "includegraphics" "includegraphics*")
446 ;; Miscellany.
447 (slash "\\\\")
448 (opt " *\\(\\[[^]]*\\] *\\)*")
449 ;; This would allow highlighting \newcommand\CMD but requires
450 ;; adapting subgroup numbers below.
451 ;; (arg "\\(?:{\\(\\(?:[^{}\\]+\\|\\\\.\\|{[^}]*}\\)+\\)\\|\\\\[a-z*]+\\)"))
452 (arg "{\\(\\(?:[^{}\\]+\\|\\\\.\\|{[^}]*}\\)+\\)"))
453 (list
454 ;; Heading args.
455 (list (concat slash headings "\\*?" opt arg)
456 ;; If ARG ends up matching too much (if the {} don't match, f.ex)
457 ;; jit-lock will do funny things: when updating the buffer
458 ;; the re-highlighting is only done locally so it will just
459 ;; match the local line, but defer-contextually will
460 ;; match more lines at a time, so ARG will end up matching
461 ;; a lot more, which might suddenly include a comment
462 ;; so you get things highlighted bold when you type them
463 ;; but they get turned back to normal a little while later
464 ;; because "there's already a face there".
465 ;; Using `keep' works around this un-intuitive behavior as well
466 ;; as improves the behavior in the very rare case where you do
467 ;; have a comment in ARG.
468 3 'font-lock-function-name-face 'keep)
469 (list (concat slash "\\(re\\)?newcommand\\** *\\(\\\\[A-Za-z@]+\\)")
470 2 'font-lock-function-name-face 'keep)
471 ;; Variable args.
472 (list (concat slash variables " *" arg) 2 'font-lock-variable-name-face)
473 ;; Include args.
474 (list (concat slash includes opt arg) 3 'font-lock-builtin-face)
475 ;; Definitions. I think.
476 '("^[ \t]*\\\\def *\\\\\\(\\(\\w\\|@\\)+\\)"
477 1 font-lock-function-name-face))))
478 "Subdued expressions to highlight in TeX modes.")
480 (defconst tex-font-lock-keywords-2
481 (append tex-font-lock-keywords-1
482 (eval-when-compile
483 (let* (;;
484 ;; Names of commands whose arg should be fontified with fonts.
485 (bold (regexp-opt '("textbf" "textsc" "textup"
486 "boldsymbol" "pmb") t))
487 (italic (regexp-opt '("textit" "textsl" "emph") t))
488 (type (regexp-opt '("texttt" "textmd" "textrm" "textsf") t))
490 ;; Names of commands whose arg should be fontified as a citation.
491 (citations (regexp-opt
492 '("label" "ref" "pageref" "vref" "eqref"
493 "cite" "nocite" "index" "glossary" "bibitem"
494 ;; These are text, rather than citations.
495 ;; "caption" "footnote" "footnotemark" "footnotetext"
499 ;; Names of commands that should be fontified.
500 (specials (regexp-opt
501 '("\\" "\\*" ;; "-"
502 "linebreak" "nolinebreak" "pagebreak" "nopagebreak"
503 "newline" "newpage" "clearpage" "cleardoublepage"
504 "displaybreak" "allowdisplaybreaks" "enlargethispage")
506 (general "\\([a-zA-Z@]+\\**\\|[^ \t\n]\\)")
508 ;; Miscellany.
509 (slash "\\\\")
510 (opt " *\\(\\[[^]]*\\] *\\)*")
511 (arg "{\\(\\(?:[^{}\\]+\\|\\\\.\\|{[^}]*}\\)+\\)"))
512 (list
514 ;; Citation args.
515 (list (concat slash citations opt arg) 3 'font-lock-constant-face)
517 ;; Text between `` quotes ''.
518 (cons (concat (regexp-opt `("``" "\"<" "\"`" "<<" "�«") t)
519 "[^'\">�»]+" ;a bit pessimistic
520 (regexp-opt `("''" "\">" "\"'" ">>" "�»") t))
521 'font-lock-string-face)
523 ;; Command names, special and general.
524 (cons (concat slash specials) 'font-lock-warning-face)
525 (concat slash general)
527 ;; Font environments. It seems a bit dubious to use `bold' etc. faces
528 ;; since we might not be able to display those fonts.
529 (list (concat slash bold " *" arg) 2 '(quote bold) 'append)
530 (list (concat slash italic " *" arg) 2 '(quote italic) 'append)
531 ;; (list (concat slash type arg) 2 '(quote bold-italic) 'append)
533 ;; Old-style bf/em/it/sl. Stop at `\\' and un-escaped `&', for tables.
534 (list (concat "\\\\\\(\\(bf\\)\\|em\\|it\\|sl\\)\\>"
535 "\\(\\([^}&\\]\\|\\\\[^\\]\\)+\\)")
536 3 '(if (match-beginning 2) 'bold 'italic) 'append)))))
537 "Gaudy expressions to highlight in TeX modes.")
539 (defvar tex-font-lock-keywords tex-font-lock-keywords-1
540 "Default expressions to highlight in TeX modes.")
543 (defface tex-math-face
544 '((t :inherit font-lock-string-face))
545 "Face used to highlight TeX math expressions.")
546 (defvar tex-math-face 'tex-math-face)
548 ;; Use string syntax but math face for $...$.
549 (defun tex-font-lock-syntactic-face-function (state)
550 (if (nth 3 state) tex-math-face font-lock-comment-face))
553 (defun tex-define-common-keys (keymap)
554 "Define the keys that we want defined both in TeX mode and in the TeX shell."
555 (define-key keymap "\C-c\C-k" 'tex-kill-job)
556 (define-key keymap "\C-c\C-l" 'tex-recenter-output-buffer)
557 (define-key keymap "\C-c\C-q" 'tex-show-print-queue)
558 (define-key keymap "\C-c\C-p" 'tex-print)
559 (define-key keymap "\C-c\C-v" 'tex-view)
561 (define-key keymap [menu-bar tex] (cons "TeX" (make-sparse-keymap "TeX")))
563 (define-key keymap [menu-bar tex tex-kill-job]
564 '(menu-item "Tex Kill" tex-kill-job :enable (tex-shell-running)))
565 (define-key keymap [menu-bar tex tex-recenter-output-buffer]
566 '(menu-item "Tex Recenter" tex-recenter-output-buffer
567 :enable (get-buffer "*tex-shell*")))
568 (define-key keymap [menu-bar tex tex-show-print-queue]
569 '("Show Print Queue" . tex-show-print-queue))
570 (define-key keymap [menu-bar tex tex-alt-print]
571 '(menu-item "Tex Print (alt printer)" tex-alt-print
572 :enable (stringp tex-print-file)))
573 (define-key keymap [menu-bar tex tex-print]
574 '(menu-item "Tex Print" tex-print :enable (stringp tex-print-file)))
575 (define-key keymap [menu-bar tex tex-view]
576 '(menu-item "Tex View" tex-view :enable (stringp tex-print-file))))
578 (defvar tex-mode-map
579 (let ((map (make-sparse-keymap)))
580 (set-keymap-parent map text-mode-map)
581 (tex-define-common-keys map)
582 (define-key map "\"" 'tex-insert-quote)
583 (define-key map "(" 'skeleton-pair-insert-maybe)
584 (define-key map "{" 'skeleton-pair-insert-maybe)
585 (define-key map "[" 'skeleton-pair-insert-maybe)
586 (define-key map "$" 'skeleton-pair-insert-maybe)
587 (define-key map "\n" 'tex-terminate-paragraph)
588 (define-key map "\t" 'indent-for-tab-command)
589 (define-key map "\M-\r" 'latex-insert-item)
590 (define-key map "\C-c}" 'up-list)
591 (define-key map "\C-c{" 'tex-insert-braces)
592 (define-key map "\C-c\C-r" 'tex-region)
593 (define-key map "\C-c\C-b" 'tex-buffer)
594 (define-key map "\C-c\C-f" 'tex-file)
595 (define-key map "\C-c\C-i" 'tex-bibtex-file)
596 (define-key map "\C-c\C-o" 'tex-latex-block)
597 (define-key map "\C-c\C-e" 'tex-close-latex-block)
598 (define-key map "\C-c\C-u" 'tex-goto-last-unclosed-latex-block)
599 (define-key map "\C-c\C-m" 'tex-feed-input)
600 (define-key map [(control return)] 'tex-feed-input)
601 (define-key map [menu-bar tex tex-bibtex-file]
602 '("BibTeX File" . tex-bibtex-file))
603 (define-key map [menu-bar tex tex-validate-region]
604 '(menu-item "Validate Region" tex-validate-region :enable mark-active))
605 (define-key map [menu-bar tex tex-validate-buffer]
606 '("Validate Buffer" . tex-validate-buffer))
607 (define-key map [menu-bar tex tex-region]
608 '(menu-item "TeX Region" tex-region :enable mark-active))
609 (define-key map [menu-bar tex tex-buffer]
610 '("TeX Buffer" . tex-buffer))
611 (define-key map [menu-bar tex tex-file] '("TeX File" . tex-file))
612 map)
613 "Keymap shared by TeX modes.")
615 (defvar latex-mode-map
616 (let ((map (make-sparse-keymap)))
617 (set-keymap-parent map tex-mode-map)
618 map)
619 "Keymap for `latex-mode'. See also `tex-mode-map'.")
621 (defvar plain-tex-mode-map
622 (let ((map (make-sparse-keymap)))
623 (set-keymap-parent map tex-mode-map)
624 map)
625 "Keymap for `plain-tex-mode'. See also `tex-mode-map'.")
627 (defvar tex-shell-map
628 (let ((m (make-sparse-keymap)))
629 (set-keymap-parent m shell-mode-map)
630 (tex-define-common-keys m)
632 "Keymap for the TeX shell.
633 Inherits `shell-mode-map' with a few additions.")
635 (defvar tex-face-alist
636 '((bold . "{\\bf ")
637 (italic . "{\\it ")
638 (bold-italic . "{\\bi ") ; hypothetical
639 (underline . "\\underline{")
640 (default . "{\\rm "))
641 "Alist of face and TeX font name for facemenu.")
643 (defvar tex-latex-face-alist
644 `((italic . "{\\em ")
645 ,@tex-face-alist)
646 "Alist of face and LaTeX font name for facemenu.")
648 ;; This would be a lot simpler if we just used a regexp search,
649 ;; but then it would be too slow.
650 ;;;###autoload
651 (defun tex-mode ()
652 "Major mode for editing files of input for TeX, LaTeX, or SliTeX.
653 Tries to determine (by looking at the beginning of the file) whether
654 this file is for plain TeX, LaTeX, or SliTeX and calls `plain-tex-mode',
655 `latex-mode', or `slitex-mode', respectively. If it cannot be determined,
656 such as if there are no commands in the file, the value of `tex-default-mode'
657 says which mode to use."
658 (interactive)
659 (let ((mode tex-default-mode) slash comment)
660 (save-excursion
661 (goto-char (point-min))
662 (while (and (setq slash (search-forward "\\" nil t))
663 (setq comment (let ((search-end (point)))
664 (save-excursion
665 (beginning-of-line)
666 (search-forward "%" search-end t))))))
667 (when (and slash (not comment))
668 (setq mode
669 (if (looking-at
670 (eval-when-compile
671 (concat
672 (regexp-opt '("documentstyle" "documentclass"
673 "begin" "section" "part" "chapter") 'words)
674 "\\|NeedsTeXFormat{LaTeX")))
675 (if (looking-at
676 "document\\(style\\|class\\)\\(\\[.*\\]\\)?{slides}")
677 'slitex-mode
678 'latex-mode)
679 'plain-tex-mode))))
680 (funcall mode)))
682 ;;;###autoload
683 (defalias 'TeX-mode 'tex-mode)
684 ;;;###autoload
685 (defalias 'plain-TeX-mode 'plain-tex-mode)
686 ;;;###autoload
687 (defalias 'LaTeX-mode 'latex-mode)
689 ;;;###autoload
690 (define-derived-mode plain-tex-mode text-mode "TeX"
691 "Major mode for editing files of input for plain TeX.
692 Makes $ and } display the characters they match.
693 Makes \" insert `` when it seems to be the beginning of a quotation,
694 and '' when it appears to be the end; it inserts \" only after a \\.
696 Use \\[tex-region] to run TeX on the current region, plus a \"header\"
697 copied from the top of the file (containing macro definitions, etc.),
698 running TeX under a special subshell. \\[tex-buffer] does the whole buffer.
699 \\[tex-file] saves the buffer and then processes the file.
700 \\[tex-print] prints the .dvi file made by any of these.
701 \\[tex-view] previews the .dvi file made by any of these.
702 \\[tex-bibtex-file] runs bibtex on the file of the current buffer.
704 Use \\[tex-validate-buffer] to check buffer for paragraphs containing
705 mismatched $'s or braces.
707 Special commands:
708 \\{plain-tex-mode-map}
710 Mode variables:
711 tex-run-command
712 Command string used by \\[tex-region] or \\[tex-buffer].
713 tex-directory
714 Directory in which to create temporary files for TeX jobs
715 run by \\[tex-region] or \\[tex-buffer].
716 tex-dvi-print-command
717 Command string used by \\[tex-print] to print a .dvi file.
718 tex-alt-dvi-print-command
719 Alternative command string used by \\[tex-print] (when given a prefix
720 argument) to print a .dvi file.
721 tex-dvi-view-command
722 Command string used by \\[tex-view] to preview a .dvi file.
723 tex-show-queue-command
724 Command string used by \\[tex-show-print-queue] to show the print
725 queue that \\[tex-print] put your job on.
727 Entering Plain-tex mode runs the hook `text-mode-hook', then the hook
728 `tex-mode-hook', and finally the hook `plain-tex-mode-hook'. When the
729 special subshell is initiated, the hook `tex-shell-hook' is run."
730 (tex-common-initialization)
731 (setq tex-command tex-run-command)
732 (setq tex-start-of-header "%\\*\\*start of header")
733 (setq tex-end-of-header "%\\*\\*end of header")
734 (setq tex-trailer "\\bye\n")
735 (run-hooks 'tex-mode-hook))
737 ;;;###autoload
738 (define-derived-mode latex-mode text-mode "LaTeX"
739 "Major mode for editing files of input for LaTeX.
740 Makes $ and } display the characters they match.
741 Makes \" insert `` when it seems to be the beginning of a quotation,
742 and '' when it appears to be the end; it inserts \" only after a \\.
744 Use \\[tex-region] to run LaTeX on the current region, plus the preamble
745 copied from the top of the file (containing \\documentstyle, etc.),
746 running LaTeX under a special subshell. \\[tex-buffer] does the whole buffer.
747 \\[tex-file] saves the buffer and then processes the file.
748 \\[tex-print] prints the .dvi file made by any of these.
749 \\[tex-view] previews the .dvi file made by any of these.
750 \\[tex-bibtex-file] runs bibtex on the file of the current buffer.
752 Use \\[tex-validate-buffer] to check buffer for paragraphs containing
753 mismatched $'s or braces.
755 Special commands:
756 \\{latex-mode-map}
758 Mode variables:
759 latex-run-command
760 Command string used by \\[tex-region] or \\[tex-buffer].
761 tex-directory
762 Directory in which to create temporary files for LaTeX jobs
763 run by \\[tex-region] or \\[tex-buffer].
764 tex-dvi-print-command
765 Command string used by \\[tex-print] to print a .dvi file.
766 tex-alt-dvi-print-command
767 Alternative command string used by \\[tex-print] (when given a prefix
768 argument) to print a .dvi file.
769 tex-dvi-view-command
770 Command string used by \\[tex-view] to preview a .dvi file.
771 tex-show-queue-command
772 Command string used by \\[tex-show-print-queue] to show the print
773 queue that \\[tex-print] put your job on.
775 Entering Latex mode runs the hook `text-mode-hook', then
776 `tex-mode-hook', and finally `latex-mode-hook'. When the special
777 subshell is initiated, `tex-shell-hook' is run."
778 (tex-common-initialization)
779 (setq tex-command latex-run-command)
780 (setq tex-start-of-header "\\\\document\\(style\\|class\\)")
781 (setq tex-end-of-header "\\\\begin\\s-*{document}")
782 (setq tex-trailer "\\end\\s-*{document}\n")
783 ;; A line containing just $$ is treated as a paragraph separator.
784 ;; A line starting with $$ starts a paragraph,
785 ;; but does not separate paragraphs if it has more stuff on it.
786 (setq paragraph-start
787 (concat "[\f%]\\|[ \t]*\\($\\|\\$\\$\\|"
788 "\\\\[][]\\|"
789 "\\\\" (regexp-opt (append
790 (mapcar 'car latex-section-alist)
791 '("begin" "label" "end"
792 "item" "bibitem" "newline" "noindent"
793 "newpage" "footnote" "marginpar"
794 "parbox" "caption")) t)
795 "\\>\\|\\\\[a-z]*" (regexp-opt '("space" "skip" "page") t)
796 "\\>\\)"))
797 (setq paragraph-separate
798 (concat "[\f%]\\|[ \t]*\\($\\|"
799 "\\\\[][]\\|"
800 "\\\\" (regexp-opt (append
801 (mapcar 'car latex-section-alist)
802 '("begin" "label" "end" )) t)
803 "\\>\\|\\\\\\(" (regexp-opt '("item" "bibitem" "newline"
804 "noindent" "newpage" "footnote"
805 "marginpar" "parbox" "caption"))
806 "\\|\\$\\$\\|[a-z]*\\(space\\|skip\\|page[a-z]*\\)"
807 "\\>\\)[ \t]*\\($\\|%\\)\\)"))
808 (set (make-local-variable 'imenu-create-index-function)
809 'latex-imenu-create-index)
810 (set (make-local-variable 'tex-face-alist) tex-latex-face-alist)
811 (set (make-local-variable 'fill-nobreak-predicate)
812 'latex-fill-nobreak-predicate)
813 (set (make-local-variable 'indent-line-function) 'latex-indent)
814 (set (make-local-variable 'fill-indent-according-to-mode) t)
815 (set (make-local-variable 'outline-regexp) latex-outline-regexp)
816 (set (make-local-variable 'outline-level) 'latex-outline-level)
817 (set (make-local-variable 'forward-sexp-function) 'latex-forward-sexp)
818 (set (make-local-variable 'skeleton-end-hook) nil)
819 (run-hooks 'tex-mode-hook))
821 ;;;###autoload
822 (define-derived-mode slitex-mode latex-mode "SliTeX"
823 "Major mode for editing files of input for SliTeX.
824 Makes $ and } display the characters they match.
825 Makes \" insert `` when it seems to be the beginning of a quotation,
826 and '' when it appears to be the end; it inserts \" only after a \\.
828 Use \\[tex-region] to run SliTeX on the current region, plus the preamble
829 copied from the top of the file (containing \\documentstyle, etc.),
830 running SliTeX under a special subshell. \\[tex-buffer] does the whole buffer.
831 \\[tex-file] saves the buffer and then processes the file.
832 \\[tex-print] prints the .dvi file made by any of these.
833 \\[tex-view] previews the .dvi file made by any of these.
834 \\[tex-bibtex-file] runs bibtex on the file of the current buffer.
836 Use \\[tex-validate-buffer] to check buffer for paragraphs containing
837 mismatched $'s or braces.
839 Special commands:
840 \\{slitex-mode-map}
842 Mode variables:
843 slitex-run-command
844 Command string used by \\[tex-region] or \\[tex-buffer].
845 tex-directory
846 Directory in which to create temporary files for SliTeX jobs
847 run by \\[tex-region] or \\[tex-buffer].
848 tex-dvi-print-command
849 Command string used by \\[tex-print] to print a .dvi file.
850 tex-alt-dvi-print-command
851 Alternative command string used by \\[tex-print] (when given a prefix
852 argument) to print a .dvi file.
853 tex-dvi-view-command
854 Command string used by \\[tex-view] to preview a .dvi file.
855 tex-show-queue-command
856 Command string used by \\[tex-show-print-queue] to show the print
857 queue that \\[tex-print] put your job on.
859 Entering SliTeX mode runs the hook `text-mode-hook', then the hook
860 `tex-mode-hook', then the hook `latex-mode-hook', and finally the hook
861 `slitex-mode-hook'. When the special subshell is initiated, the hook
862 `tex-shell-hook' is run."
863 (setq tex-command slitex-run-command)
864 (setq tex-start-of-header "\\\\documentstyle{slides}\\|\\\\documentclass{slides}"))
866 (defun tex-common-initialization ()
867 (set-syntax-table tex-mode-syntax-table)
868 ;; Regexp isearch should accept newline and formfeed as whitespace.
869 (set (make-local-variable 'search-whitespace-regexp) "[ \t\r\n\f]+")
870 ;; A line containing just $$ is treated as a paragraph separator.
871 (set (make-local-variable 'paragraph-start)
872 "[ \t]*$\\|[\f\\\\%]\\|[ \t]*\\$\\$")
873 ;; A line starting with $$ starts a paragraph,
874 ;; but does not separate paragraphs if it has more stuff on it.
875 (set (make-local-variable 'paragraph-separate)
876 "[ \t]*$\\|[\f\\\\%]\\|[ \t]*\\$\\$[ \t]*$")
877 (set (make-local-variable 'comment-start) "%")
878 (set (make-local-variable 'comment-add) 1)
879 (set (make-local-variable 'comment-start-skip)
880 "\\(\\(^\\|[^\\]\\)\\(\\\\\\\\\\)*\\)\\(%+ *\\)")
881 (set (make-local-variable 'parse-sexp-ignore-comments) t)
882 (set (make-local-variable 'compare-windows-whitespace)
883 'tex-categorize-whitespace)
884 (set (make-local-variable 'facemenu-add-face-function)
885 (lambda (face end)
886 (let ((face-text (cdr (assq face tex-face-alist))))
887 (if face-text
888 face-text
889 (error "Face %s not configured for %s mode" face mode-name)))))
890 (set (make-local-variable 'facemenu-end-add-face) "}")
891 (set (make-local-variable 'facemenu-remove-face-function) t)
892 (set (make-local-variable 'font-lock-defaults)
893 '((tex-font-lock-keywords
894 tex-font-lock-keywords-1 tex-font-lock-keywords-2)
895 nil nil ((?$ . "\"")) nil
896 ;; Who ever uses that anyway ???
897 (font-lock-mark-block-function . mark-paragraph)
898 (font-lock-syntactic-face-function
899 . tex-font-lock-syntactic-face-function)))
900 (make-local-variable 'tex-command)
901 (make-local-variable 'tex-start-of-header)
902 (make-local-variable 'tex-end-of-header)
903 (make-local-variable 'tex-trailer))
905 (defun tex-categorize-whitespace (backward-limit)
906 ;; compare-windows-whitespace is set to this.
907 ;; This is basically a finite-state machine.
908 ;; Returns a symbol telling how TeX would treat
909 ;; the whitespace we are looking at: null, space, or par.
910 (let ((category 'null)
911 (not-finished t))
912 (skip-chars-backward " \t\n\f" backward-limit)
913 (while not-finished
914 (cond ((looking-at "[ \t]+")
915 (goto-char (match-end 0))
916 (if (eq category 'null)
917 (setq category 'space)))
918 ((looking-at "\n")
919 (cond ((eq category 'newline)
920 (setq category 'par)
921 (setq not-finished nil))
923 (setq category 'newline) ;a strictly internal state
924 (goto-char (match-end 0)))))
925 ((looking-at "\f+")
926 (setq category 'par)
927 (setq not-finished nil))
929 (setq not-finished nil))))
930 (skip-chars-forward " \t\n\f")
931 (if (eq category 'newline)
932 'space ;TeX doesn't distinguish
933 category)))
935 (defun tex-insert-quote (arg)
936 "Insert the appropriate quote marks for TeX.
937 Inserts the value of `tex-open-quote' (normally ``) or `tex-close-quote'
938 \(normally '') depending on the context. With prefix argument, always
939 inserts \" characters."
940 (interactive "*P")
941 (if arg
942 (self-insert-command (prefix-numeric-value arg))
943 (insert
944 (cond ((= (preceding-char) ?\\) ?\")
945 ((memq (char-syntax (preceding-char)) '(?\( ?> ?\ )) tex-open-quote)
946 (t tex-close-quote)))))
948 (defun tex-validate-buffer ()
949 "Check current buffer for paragraphs containing mismatched braces or $s.
950 Their positions are recorded in the buffer `*Occur*'.
951 To find a particular invalidity from `*Occur*', switch to that buffer
952 and type C-c C-c or click with mouse-2
953 on the line for the invalidity you want to see."
954 (interactive)
955 (let ((buffer (current-buffer))
956 (prevpos (point-min))
957 (linenum nil)
958 (num-matches 0))
959 (with-output-to-temp-buffer "*Occur*"
960 (princ "Mismatches:\n")
961 (save-excursion
962 (set-buffer standard-output)
963 (occur-mode)
964 (setq occur-buffer buffer)
965 (setq occur-nlines 0))
966 (save-excursion
967 (goto-char (point-max))
968 (while (and (not (input-pending-p)) (not (bobp)))
969 (let ((end (point))
970 prev-end)
971 ;; Scan the previous paragraph for invalidities.
972 (if (search-backward "\n\n" nil t)
973 (progn
974 (setq prev-end (point))
975 (forward-char 2))
976 (goto-char (setq prev-end (point-min))))
977 (or (tex-validate-region (point) end)
978 (let* ((oend end)
979 (end (save-excursion (forward-line 1) (point)))
980 start tem)
981 (beginning-of-line)
982 (setq start (point))
983 ;; Keep track of line number as we scan,
984 ;; in a cumulative fashion.
985 (if linenum
986 (setq linenum (- linenum (count-lines prevpos (point))))
987 (setq linenum (1+ (count-lines 1 start))))
988 (setq prevpos (point))
989 ;; Mention this mismatch in *Occur*.
990 ;; Since we scan from end of buffer to beginning,
991 ;; add each mismatch at the beginning of *Occur*.
992 (save-excursion
993 (setq tem (point-marker))
994 (set-buffer standard-output)
995 (goto-char (point-min))
996 ;; Skip "Mismatches:" header line.
997 (forward-line 1)
998 (setq num-matches (1+ num-matches))
999 (insert-buffer-substring buffer start end)
1000 (let (text-beg (text-end (point-marker)))
1001 (forward-char (- start end))
1002 (setq text-beg (point-marker))
1003 (insert (format "%3d: " linenum))
1004 (add-text-properties
1005 text-beg (- text-end 1)
1006 '(mouse-face highlight
1007 help-echo "mouse-2: go to this invalidity"))
1008 (put-text-property text-beg (- text-end 1)
1009 'occur tem)))))
1010 (goto-char prev-end))))
1011 (with-current-buffer standard-output
1012 (if (eq num-matches 0)
1013 (insert "None!\n"))
1014 (if (interactive-p)
1015 (message "%d mismatches found" num-matches))))))
1017 (defun tex-validate-region (start end)
1018 "Check for mismatched braces or $'s in region.
1019 Returns t if no mismatches. Returns nil and moves point to suspect
1020 area if a mismatch is found."
1021 (interactive "r")
1022 (let ((failure-point nil) (max-possible-sexps (- end start)))
1023 (save-excursion
1024 (condition-case ()
1025 (save-restriction
1026 (narrow-to-region start end)
1027 ;; First check that the open and close parens balance in numbers.
1028 (goto-char start)
1029 (while (<= 0 (setq max-possible-sexps (1- max-possible-sexps)))
1030 (forward-sexp 1))
1031 ;; Now check that like matches like.
1032 (goto-char start)
1033 (while (progn (skip-syntax-forward "^(")
1034 (not (eobp)))
1035 (let ((match (matching-paren (following-char))))
1036 (save-excursion
1037 (forward-sexp 1)
1038 (or (= (preceding-char) match)
1039 (error "Mismatched parentheses"))))
1040 (forward-char 1)))
1041 (error
1042 (skip-syntax-forward " .>")
1043 (setq failure-point (point)))))
1044 (if failure-point (goto-char failure-point))
1045 (not failure-point)))
1047 (defun tex-terminate-paragraph (inhibit-validation)
1048 "Insert two newlines, breaking a paragraph for TeX.
1049 Check for mismatched braces or $s in paragraph being terminated.
1050 A prefix arg inhibits the checking."
1051 (interactive "*P")
1052 (or inhibit-validation
1053 (save-excursion
1054 (tex-validate-region
1055 (save-excursion
1056 (search-backward "\n\n" nil 'move)
1057 (point))
1058 (point)))
1059 (message "Paragraph being closed appears to contain a mismatch"))
1060 (insert "\n\n"))
1062 (defun tex-insert-braces ()
1063 "Make a pair of braces and be poised to type inside of them."
1064 (interactive "*")
1065 (insert ?\{)
1066 (save-excursion
1067 (insert ?})))
1069 ;; This function is used as the value of fill-nobreak-predicate
1070 ;; in LaTeX mode. Its job is to prevent line-breaking inside
1071 ;; of a \verb construct.
1072 (defun latex-fill-nobreak-predicate ()
1073 (let ((opoint (point))
1074 inside)
1075 (save-excursion
1076 (save-restriction
1077 (beginning-of-line)
1078 (narrow-to-region (point) opoint)
1079 (while (re-search-forward "\\\\verb\\(.\\)" nil t)
1080 (unless (re-search-forward (regexp-quote (match-string 1)) nil t)
1081 (setq inside t)))))
1082 inside))
1084 (defvar latex-block-default "enumerate")
1086 ;; Like tex-insert-braces, but for LaTeX.
1087 (define-skeleton tex-latex-block
1088 "Create a matching pair of lines \\begin[OPT]{NAME} and \\end{NAME} at point.
1089 Puts point on a blank line between them."
1090 (let ((choice (completing-read (format "LaTeX block name [%s]: "
1091 latex-block-default)
1092 (mapcar 'list
1093 (append standard-latex-block-names
1094 latex-block-names))
1095 nil nil nil nil latex-block-default)))
1096 (setq latex-block-default choice)
1097 (unless (or (member choice standard-latex-block-names)
1098 (member choice latex-block-names))
1099 ;; Remember new block names for later completion.
1100 (push choice latex-block-names))
1101 choice)
1102 \n "\\begin{" str ?\}
1103 ?\[ (skeleton-read "[options]: ") & ?\] | -1
1104 > \n _ \n
1105 "\\end{" str ?\} > \n)
1107 (define-skeleton latex-insert-item
1108 "Insert a \item macro."
1110 \n "\\item " >)
1113 ;;;;
1114 ;;;; LaTeX syntax navigation
1115 ;;;;
1117 (defun tex-last-unended-begin ()
1118 "Leave point at the beginning of the last `\\begin{...}' that is unended."
1119 (while (and (re-search-backward "\\\\\\(begin\\|end\\)\\s *{")
1120 (looking-at "\\\\end"))
1121 (tex-last-unended-begin)))
1123 (defun tex-next-unmatched-end ()
1124 "Leave point at the end of the next `\\end' that is unended."
1125 (while (and (re-search-forward "\\\\\\(begin\\|end\\)\\s *{[^}]+}")
1126 (save-excursion (goto-char (match-beginning 0))
1127 (looking-at "\\\\begin")))
1128 (tex-next-unmatched-end)))
1130 (defun tex-goto-last-unclosed-latex-block ()
1131 "Move point to the last unclosed \\begin{...}.
1132 Mark is left at original location."
1133 (interactive)
1134 (let ((spot))
1135 (save-excursion
1136 (condition-case nil
1137 (tex-last-unended-begin)
1138 (error (error "Couldn't find unended \\begin")))
1139 (setq spot (point)))
1140 (push-mark)
1141 (goto-char spot)))
1143 (defun latex-backward-sexp-1 ()
1144 "Like (backward-sexp 1) but aware of multi-char elements."
1145 (let ((pos (point))
1146 (forward-sexp-function))
1147 (backward-sexp 1)
1148 (if (looking-at "\\\\begin\\>")
1149 (signal 'scan-error
1150 (list "Containing expression ends prematurely"
1151 (point) (prog1 (point) (goto-char pos))))
1152 (when (eq (char-after) ?{)
1153 (let ((newpos (point)))
1154 (when (ignore-errors (backward-sexp 1) t)
1155 (if (looking-at "\\\\end\\>")
1156 (tex-last-unended-begin)
1157 (goto-char newpos))))))))
1159 (defun latex-forward-sexp-1 ()
1160 "Like (forward-sexp 1) but aware of multi-char elements."
1161 (let ((pos (point))
1162 (forward-sexp-function))
1163 (forward-sexp 1)
1164 (let ((newpos (point)))
1165 (skip-syntax-backward "/w")
1166 (cond
1167 ((looking-at "\\\\end\\>")
1168 (signal 'scan-error
1169 (list "Containing expression ends prematurely"
1170 (point)
1171 (prog1
1172 (progn (ignore-errors (forward-sexp 2)) (point))
1173 (goto-char pos)))))
1174 ((looking-at "\\\\begin\\>")
1175 (goto-char (match-end 0))
1176 (tex-next-unmatched-end))
1177 (t (goto-char newpos))))))
1179 (defun latex-forward-sexp (&optional arg)
1180 "Like `forward-sexp' but aware of multi-char elements."
1181 (interactive "P")
1182 (unless arg (setq arg 1))
1183 (let ((pos (point)))
1184 (condition-case err
1185 (while (/= arg 0)
1186 (setq arg
1187 (if (> arg 0)
1188 (progn (latex-forward-sexp-1) (1- arg))
1189 (progn (latex-backward-sexp-1) (1+ arg)))))
1190 (scan-error
1191 (goto-char pos)
1192 (signal (car err) (cdr err))))))
1194 (defun latex-syntax-after ()
1195 "Like (char-syntax (char-after)) but aware of multi-char elements."
1196 (if (looking-at "\\\\end\\>") ?\) (char-syntax (following-char))))
1198 (defun latex-skip-close-parens ()
1199 "Like (skip-syntax-forward \" )\") but aware of multi-char elements."
1200 (let ((forward-sexp-function nil))
1201 (while (progn (skip-syntax-forward " )")
1202 (looking-at "\\\\end\\>"))
1203 (forward-sexp 2))))
1205 (defun latex-down-list ()
1206 "Like (down-list 1) but aware of multi-char elements."
1207 (forward-comment (point-max))
1208 (let ((forward-sexp-function nil))
1209 (if (not (looking-at "\\\\begin\\>"))
1210 (down-list 1)
1211 (forward-sexp 1)
1212 ;; Skip arguments.
1213 (while (looking-at "[ \t]*\\s(") (forward-sexp)))))
1215 (defun tex-close-latex-block ()
1216 "Creates an \\end{...} to match the last unclosed \\begin{...}."
1217 (interactive "*")
1218 (let ((new-line-needed (bolp))
1219 text indentation)
1220 (save-excursion
1221 (condition-case nil
1222 (tex-last-unended-begin)
1223 (error (error "Couldn't find unended \\begin")))
1224 (setq indentation (current-column))
1225 (re-search-forward "\\\\begin\\(\\s *{[^}\n]*}\\)")
1226 (setq text (buffer-substring (match-beginning 1) (match-end 1))))
1227 (indent-to indentation)
1228 (insert "\\end" text)
1229 (if new-line-needed (insert ?\n))))
1231 (defconst tex-discount-args-cmds
1232 '("begin" "end" "input" "special" "cite" "ref" "include" "includeonly"
1233 "documentclass" "usepackage" "label")
1234 "TeX commands whose arguments should not be counted as text.")
1236 (defun tex-count-words (begin end)
1237 "Count the number of words in the buffer."
1238 (interactive
1239 (if (and transient-mark-mode mark-active)
1240 (list (region-beginning) (region-end))
1241 (list (point-min) (point-max))))
1242 ;; TODO: skip comments and math and maybe some environments.
1243 (save-excursion
1244 (goto-char begin)
1245 (let ((count 0))
1246 (while (and (< (point) end) (re-search-forward "\\<" end t))
1247 (if (not (eq (char-syntax (preceding-char)) ?/))
1248 (progn
1249 ;; Don't count single-char words.
1250 (unless (looking-at ".\\>") (incf count))
1251 (forward-char 1))
1252 (let ((cmd
1253 (buffer-substring-no-properties
1254 (point) (progn (when (zerop (skip-chars-forward "a-zA-Z@"))
1255 (forward-char 1))
1256 (point)))))
1257 (when (member cmd tex-discount-args-cmds)
1258 (skip-chars-forward "*")
1259 (forward-comment (point-max))
1260 (when (looking-at "\\[")
1261 (forward-sexp 1)
1262 (forward-comment (point-max)))
1263 (if (not (looking-at "{"))
1264 (forward-char 1)
1265 (forward-sexp 1))))))
1266 (message "%s words" count))))
1270 ;;; Invoking TeX in an inferior shell.
1272 ;; Why use a shell instead of running TeX directly? Because if TeX
1273 ;; gets stuck, the user can switch to the shell window and type at it.
1275 ;; The utility functions:
1277 (define-derived-mode tex-shell shell-mode "TeX-Shell"
1278 (compilation-shell-minor-mode t))
1280 ;;;###autoload
1281 (defun tex-start-shell ()
1282 (with-current-buffer
1283 (make-comint
1284 "tex-shell"
1285 (or tex-shell-file-name (getenv "ESHELL") shell-file-name)
1286 nil)
1287 (let ((proc (get-process "tex-shell")))
1288 (set-process-sentinel proc 'tex-shell-sentinel)
1289 (process-kill-without-query proc)
1290 (tex-shell)
1291 (while (zerop (buffer-size))
1292 (sleep-for 1)))))
1294 (defun tex-feed-input ()
1295 "Send input to the tex shell process.
1296 In the tex buffer this can be used to continue an interactive tex run.
1297 In the tex shell buffer this command behaves like `comint-send-input'."
1298 (interactive)
1299 (set-buffer (tex-shell-buf))
1300 (comint-send-input)
1301 (tex-recenter-output-buffer nil))
1303 (defun tex-display-shell ()
1304 "Make the TeX shell buffer visible in a window."
1305 (display-buffer (tex-shell-buf))
1306 (tex-recenter-output-buffer nil))
1308 (defun tex-shell-sentinel (proc msg)
1309 (cond ((null (buffer-name (process-buffer proc)))
1310 ;; buffer killed
1311 (set-process-buffer proc nil)
1312 (tex-delete-last-temp-files))
1313 ((memq (process-status proc) '(signal exit))
1314 (tex-delete-last-temp-files))))
1316 (defun tex-set-buffer-directory (buffer directory)
1317 "Set BUFFER's default directory to be DIRECTORY."
1318 (setq directory (file-name-as-directory (expand-file-name directory)))
1319 (if (not (file-directory-p directory))
1320 (error "%s is not a directory" directory)
1321 (save-excursion
1322 (set-buffer buffer)
1323 (setq default-directory directory))))
1325 (defvar tex-send-command-modified-tick 0)
1326 (make-variable-buffer-local 'tex-send-command-modified-tick)
1328 (defun tex-shell-proc ()
1329 (or (tex-shell-running) (error "No TeX subprocess")))
1330 (defun tex-shell-buf ()
1331 (process-buffer (tex-shell-proc)))
1332 (defun tex-shell-buf-no-error ()
1333 (let ((proc (tex-shell-running)))
1334 (and proc (process-buffer proc))))
1336 (defun tex-send-command (command &optional file background)
1337 "Send COMMAND to TeX shell process, substituting optional FILE for *.
1338 Do this in background if optional BACKGROUND is t. If COMMAND has no *,
1339 FILE will be appended, preceded by a blank, to COMMAND. If FILE is nil, no
1340 substitution will be made in COMMAND. COMMAND can be any expression that
1341 evaluates to a command string.
1343 Return the process in which TeX is running."
1344 (save-excursion
1345 (let* ((cmd (eval command))
1346 (proc (tex-shell-proc))
1347 (buf (process-buffer proc))
1348 (star (string-match "\\*" cmd))
1349 (string
1350 (concat
1351 (if file
1352 (if star (concat (substring cmd 0 star)
1353 file (substring cmd (1+ star)))
1354 (concat cmd " " file))
1355 cmd)
1356 (if background "&" ""))))
1357 ;; Switch to buffer before checking for subproc output in it.
1358 (set-buffer buf)
1359 ;; If text is unchanged since previous tex-send-command,
1360 ;; we haven't got any output. So wait for output now.
1361 (if (= (buffer-modified-tick buf) tex-send-command-modified-tick)
1362 (accept-process-output proc))
1363 (goto-char (process-mark proc))
1364 (insert string)
1365 (comint-send-input)
1366 (setq tex-send-command-modified-tick (buffer-modified-tick buf))
1367 proc)))
1369 (defun tex-delete-last-temp-files (&optional not-all)
1370 "Delete any junk files from last temp file.
1371 If NOT-ALL is non-nil, save the `.dvi' file."
1372 (if tex-last-temp-file
1373 (let* ((dir (file-name-directory tex-last-temp-file))
1374 (list (and (file-directory-p dir)
1375 (file-name-all-completions
1376 (file-name-sans-extension
1377 (file-name-nondirectory tex-last-temp-file))
1378 dir))))
1379 (while list
1380 (if not-all
1381 (and
1382 ;; If arg is non-nil, don't delete the .dvi file.
1383 (not (string-match "\\.dvi$" (car list)))
1384 (delete-file (concat dir (car list))))
1385 (delete-file (concat dir (car list))))
1386 (setq list (cdr list))))))
1388 (add-hook 'kill-emacs-hook 'tex-delete-last-temp-files)
1390 (defun tex-guess-main-file (&optional all)
1391 "Find a likely `tex-main-file'.
1392 Looks for hints in other buffers in the same directory or in
1393 ALL other buffers."
1394 (let ((dir default-directory)
1395 (header-re tex-start-of-header))
1396 (catch 'found
1397 ;; Look for a buffer with `tex-main-file' set.
1398 (dolist (buf (if (consp all) all (buffer-list)))
1399 (with-current-buffer buf
1400 (when (and (or all (equal dir default-directory))
1401 (stringp tex-main-file))
1402 (throw 'found (expand-file-name tex-main-file)))))
1403 ;; Look for a buffer containing the magic `tex-start-of-header'.
1404 (dolist (buf (if (consp all) all (buffer-list)))
1405 (with-current-buffer buf
1406 (when (and (or all (equal dir default-directory))
1407 buffer-file-name
1408 ;; (or (easy-mmode-derived-mode-p 'latex-mode)
1409 ;; (easy-mmode-derived-mode-p 'plain-tex-mode))
1410 (save-excursion
1411 (goto-char (point-min))
1412 (re-search-forward header-re 10000 t)))
1413 (throw 'found (expand-file-name buffer-file-name))))))))
1415 (defun tex-main-file ()
1416 "Return the relative name of the main file."
1417 (let* ((file (or tex-main-file
1418 ;; Compatibility with AUCTeX.
1419 (and (boundp 'TeX-master) (stringp TeX-master)
1420 (set (make-local-variable 'tex-main-file) TeX-master))
1421 ;; Try to guess the main file.
1422 (if (not buffer-file-name)
1423 (error "Buffer is not associated with any file")
1424 (file-relative-name
1425 (if (save-excursion
1426 (goto-char (point-min))
1427 (re-search-forward tex-start-of-header 10000 t))
1428 ;; This is the main file.
1429 buffer-file-name
1430 ;; This isn't the main file, let's try to find better,
1431 (or (tex-guess-main-file)
1432 ;; (tex-guess-main-file t)
1433 buffer-file-name)))))))
1434 (if (file-exists-p file) file (concat file ".tex"))))
1437 (defun tex-start-tex (command file &optional dir)
1438 "Start a TeX run, using COMMAND on FILE."
1439 (let* ((star (string-match "\\*" command))
1440 (compile-command
1441 (if star
1442 (concat (substring command 0 star)
1443 (comint-quote-filename file)
1444 (substring command (1+ star)))
1445 (concat command " "
1446 (if (< 0 (length tex-start-options-string))
1447 (concat
1448 (shell-quote-argument tex-start-options-string) " "))
1449 (comint-quote-filename file)))))
1450 (tex-send-tex-command compile-command dir)))
1452 (defun tex-send-tex-command (cmd &optional dir)
1453 (unless (or (equal dir (let ((buf (tex-shell-buf-no-error)))
1454 (and buf (with-current-buffer buf
1455 default-directory))))
1456 (not dir))
1457 (let (shell-dirtrack-verbose)
1458 (tex-send-command tex-shell-cd-command dir)))
1459 (with-current-buffer (process-buffer (tex-send-command cmd))
1460 (make-local-variable 'compilation-parse-errors-function)
1461 (setq compilation-parse-errors-function 'tex-compilation-parse-errors)
1462 (setq compilation-last-buffer (current-buffer))
1463 (compilation-forget-errors)
1464 ;; Don't parse previous compilations.
1465 (set-marker compilation-parsing-end (1- (point-max))))
1466 (tex-display-shell)
1467 (setq tex-last-buffer-texed (current-buffer)))
1469 (defvar tex-error-parse-syntax-table
1470 (let ((st (make-syntax-table)))
1471 (modify-syntax-entry ?\( "()" st)
1472 (modify-syntax-entry ?\) ")(" st)
1473 (modify-syntax-entry ?\\ "\\" st)
1474 (modify-syntax-entry ?\{ "_" st)
1475 (modify-syntax-entry ?\} "_" st)
1476 (modify-syntax-entry ?\[ "_" st)
1477 (modify-syntax-entry ?\] "_" st)
1478 ;; Single quotations may appear in errors
1479 (modify-syntax-entry ?\" "_" st)
1481 "Syntax-table used while parsing TeX error messages.")
1483 (defun tex-compilation-parse-errors (limit-search find-at-least)
1484 "Parse the current buffer as TeX error messages.
1485 See the variable `compilation-parse-errors-function' for the interface it uses.
1487 This function parses only the last TeX compilation.
1488 It works on TeX compilations only. It is necessary for that purpose,
1489 since TeX does not put file names and line numbers on the same line as
1490 for the error messages."
1491 (require 'thingatpt)
1492 (setq compilation-error-list nil)
1493 (message "Parsing error messages...")
1494 (let ((default-directory ; Perhaps dir has changed meanwhile.
1495 (file-name-directory (buffer-file-name tex-last-buffer-texed)))
1496 found-desired (num-errors-found 0)
1497 last-filename last-linenum last-position
1498 begin-of-error end-of-error)
1499 ;; Don't reparse messages already seen at last parse.
1500 (goto-char compilation-parsing-end)
1501 ;; Parse messages.
1502 (while (and (not (or found-desired (eobp)))
1503 (prog1 (re-search-forward "^! " nil 'move)
1504 (setq begin-of-error (match-beginning 0)
1505 end-of-error (match-end 0)))
1506 (re-search-forward
1507 "^l\\.\\([0-9]+\\) \\(\\.\\.\\.\\)?\\(.*\\)$" nil 'move))
1508 (let* ((this-error (set-marker (make-marker) begin-of-error))
1509 (linenum (string-to-int (match-string 1)))
1510 (error-text (regexp-quote (match-string 3)))
1511 (filename
1512 (save-excursion
1513 (with-syntax-table tex-error-parse-syntax-table
1514 (backward-up-list 1)
1515 (skip-syntax-forward "(_")
1516 (while (not (file-readable-p (thing-at-point 'filename)))
1517 (skip-syntax-backward "(_")
1518 (backward-up-list 1)
1519 (skip-syntax-forward "(_"))
1520 (thing-at-point 'filename))))
1521 (new-file
1522 (or (null last-filename)
1523 (not (string-equal last-filename filename))))
1524 (error-location
1525 (save-excursion
1526 (if (equal filename (concat tex-zap-file ".tex"))
1527 (set-buffer tex-last-buffer-texed)
1528 (set-buffer (find-file-noselect filename)))
1529 (if new-file
1530 (progn (goto-line linenum) (setq last-position nil))
1531 (goto-char last-position)
1532 (forward-line (- linenum last-linenum)))
1533 ;; first try a forward search for the error text,
1534 ;; then a backward search limited by the last error.
1535 (let ((starting-point (point)))
1536 (or (re-search-forward error-text nil t)
1537 (re-search-backward error-text last-position t)
1538 (goto-char starting-point)))
1539 (point-marker))))
1540 (goto-char this-error)
1541 (if (and compilation-error-list
1542 (or (and find-at-least
1543 (>= num-errors-found
1544 find-at-least))
1545 (and limit-search
1546 (>= end-of-error limit-search)))
1547 new-file)
1548 (setq found-desired t)
1549 (setq num-errors-found (1+ num-errors-found)
1550 last-filename filename
1551 last-linenum linenum
1552 last-position error-location
1553 compilation-error-list ; Add the new error
1554 (cons (cons this-error error-location)
1555 compilation-error-list))
1556 (goto-char end-of-error)))))
1557 (set-marker compilation-parsing-end (point))
1558 (setq compilation-error-list (nreverse compilation-error-list))
1559 (message "Parsing error messages...done"))
1561 ;;; The commands:
1563 (defun tex-region (beg end)
1564 "Run TeX on the current region, via a temporary file.
1565 The file's name comes from the variable `tex-zap-file' and the
1566 variable `tex-directory' says where to put it.
1568 If the buffer has a header, the header is given to TeX before the
1569 region itself. The buffer's header is all lines between the strings
1570 defined by `tex-start-of-header' and `tex-end-of-header' inclusive.
1571 The header must start in the first 100 lines of the buffer.
1573 The value of `tex-trailer' is given to TeX as input after the region.
1575 The value of `tex-command' specifies the command to use to run TeX."
1576 (interactive "r")
1577 (if (tex-shell-running)
1578 (tex-kill-job)
1579 (tex-start-shell))
1580 (or tex-zap-file
1581 (setq tex-zap-file (tex-generate-zap-file-name)))
1582 ;; Temp file will be written and TeX will be run in zap-directory.
1583 ;; If the TEXINPUTS file has relative directories or if the region has
1584 ;; \input of files, this must be the same directory as the file for
1585 ;; TeX to access the correct inputs. That's why it's safest if
1586 ;; tex-directory is ".".
1587 (let* ((zap-directory
1588 (file-name-as-directory (expand-file-name tex-directory)))
1589 (tex-out-file (expand-file-name (concat tex-zap-file ".tex")
1590 zap-directory)))
1591 ;; Don't delete temp files if we do the same buffer twice in a row.
1592 (or (eq (current-buffer) tex-last-buffer-texed)
1593 (tex-delete-last-temp-files t))
1594 ;; Write the new temp file.
1595 (save-excursion
1596 (save-restriction
1597 (widen)
1598 (goto-char (point-min))
1599 (forward-line 100)
1600 (let ((search-end (point))
1601 (default-directory zap-directory)
1602 (already-output 0))
1603 (goto-char (point-min))
1605 ;; Maybe copy first line, such as `\input texinfo', to temp file.
1606 (and tex-first-line-header-regexp
1607 (looking-at tex-first-line-header-regexp)
1608 (write-region (point)
1609 (progn (forward-line 1)
1610 (setq already-output (point)))
1611 tex-out-file nil nil))
1613 ;; Write out the header, if there is one,
1614 ;; and any of the specified region which extends before it.
1615 ;; But don't repeat anything already written.
1616 (if (re-search-forward tex-start-of-header search-end t)
1617 (let (hbeg)
1618 (beginning-of-line)
1619 (setq hbeg (point)) ;mark beginning of header
1620 (if (re-search-forward tex-end-of-header nil t)
1621 (let (hend)
1622 (forward-line 1)
1623 (setq hend (point)) ;mark end of header
1624 (write-region (max (min hbeg beg) already-output)
1625 hend
1626 tex-out-file
1627 (not (zerop already-output)) nil)
1628 (setq already-output hend)))))
1630 ;; Write out the specified region
1631 ;; (but don't repeat anything already written).
1632 (write-region (max beg already-output) end
1633 tex-out-file
1634 (not (zerop already-output)) nil))
1635 ;; Write the trailer, if any.
1636 ;; Precede it with a newline to make sure it
1637 ;; is not hidden in a comment.
1638 (if tex-trailer
1639 (write-region (concat "\n" tex-trailer) nil
1640 tex-out-file t nil))))
1641 ;; Record the file name to be deleted afterward.
1642 (setq tex-last-temp-file tex-out-file)
1643 ;; Use a relative file name here because (1) the proper dir
1644 ;; is already current, and (2) the abs file name is sometimes
1645 ;; too long and can make tex crash.
1646 (tex-start-tex tex-command (concat tex-zap-file ".tex") zap-directory)
1647 (setq tex-print-file tex-out-file)))
1649 (defun tex-buffer ()
1650 "Run TeX on current buffer. See \\[tex-region] for more information.
1651 Does not save the buffer, so it's useful for trying experimental versions.
1652 See \\[tex-file] for an alternative."
1653 (interactive)
1654 (tex-region (point-min) (point-max)))
1656 (defun tex-file ()
1657 "Prompt to save all buffers and run TeX (or LaTeX) on current buffer's file.
1658 This function is more useful than \\[tex-buffer] when you need the
1659 `.aux' file of LaTeX to have the correct name."
1660 (interactive)
1661 (let* ((source-file (tex-main-file))
1662 (file-dir (file-name-directory (expand-file-name source-file))))
1663 (if tex-offer-save
1664 (save-some-buffers))
1665 (if (tex-shell-running)
1666 (tex-kill-job)
1667 (tex-start-shell))
1668 (tex-start-tex tex-command source-file file-dir)
1669 (setq tex-print-file (expand-file-name source-file))))
1671 (defun tex-generate-zap-file-name ()
1672 "Generate a unique name suitable for use as a file name."
1673 ;; Include the shell process number and host name
1674 ;; in case there are multiple shells (for same or different user).
1675 ;; Dec 1998: There is a report that some versions of xdvi
1676 ;; don't work with file names that start with #.
1677 (format "_TZ_%d-%s"
1678 (process-id (get-buffer-process "*tex-shell*"))
1679 (subst-char-in-string ?. ?- (system-name))))
1681 ;; This will perhaps be useful for modifying TEXINPUTS.
1682 ;; Expand each file name, separated by colons, in the string S.
1683 (defun tex-expand-files (s)
1684 (let (elts (start 0))
1685 (while (string-match ":" s start)
1686 (setq elts (cons (substring s start (match-beginning 0)) elts))
1687 (setq start (match-end 0)))
1688 (or (= start 0)
1689 (setq elts (cons (substring s start) elts)))
1690 (mapconcat (lambda (elt)
1691 (if (= (length elt) 0) elt (expand-file-name elt)))
1692 (nreverse elts) ":")))
1694 (defun tex-shell-running ()
1695 (let ((proc (get-process "tex-shell")))
1696 (when proc
1697 (if (and (eq (process-status proc) 'run)
1698 (buffer-live-p (process-buffer proc)))
1699 ;; return the TeX process on success
1700 proc
1701 ;; get rid of the process permanently
1702 ;; this should get rid of the annoying w32 problem with
1703 ;; dead tex-shell buffer and live process
1704 (delete-process proc)))))
1706 (defun tex-kill-job ()
1707 "Kill the currently running TeX job."
1708 (interactive)
1709 ;; `quit-process' leads to core dumps of the tex process (except if
1710 ;; coredumpsize has limit 0kb as on many environments). One would
1711 ;; like to use (kill-process proc 'lambda), however that construct
1712 ;; does not work on some systems and kills the shell itself.
1713 (let ((proc (get-process "tex-shell")))
1714 (when proc (quit-process proc t))))
1716 (defun tex-recenter-output-buffer (linenum)
1717 "Redisplay buffer of TeX job output so that most recent output can be seen.
1718 The last line of the buffer is displayed on
1719 line LINE of the window, or centered if LINE is nil."
1720 (interactive "P")
1721 (let ((tex-shell (get-buffer "*tex-shell*"))
1722 (old-buffer (current-buffer))
1723 (window))
1724 (if (null tex-shell)
1725 (message "No TeX output buffer")
1726 (setq window (display-buffer tex-shell))
1727 (save-selected-window
1728 (select-window window)
1729 (bury-buffer tex-shell)
1730 (goto-char (point-max))
1731 (recenter (if linenum
1732 (prefix-numeric-value linenum)
1733 (/ (window-height) 2)))))))
1735 (defun tex-print (&optional alt)
1736 "Print the .dvi file made by \\[tex-region], \\[tex-buffer] or \\[tex-file].
1737 Runs the shell command defined by `tex-dvi-print-command'. If prefix argument
1738 is provided, use the alternative command, `tex-alt-dvi-print-command'."
1739 (interactive "P")
1740 (let ((print-file-name-dvi (tex-append tex-print-file ".dvi"))
1741 test-name)
1742 (if (and (not (equal (current-buffer) tex-last-buffer-texed))
1743 (buffer-file-name)
1744 ;; Check that this buffer's printed file is up to date.
1745 (file-newer-than-file-p
1746 (setq test-name (tex-append (buffer-file-name) ".dvi"))
1747 (buffer-file-name)))
1748 (setq print-file-name-dvi test-name))
1749 (if (not (file-exists-p print-file-name-dvi))
1750 (error "No appropriate `.dvi' file could be found")
1751 (if (tex-shell-running)
1752 (tex-kill-job)
1753 (tex-start-shell))
1754 (tex-send-command
1755 (if alt tex-alt-dvi-print-command tex-dvi-print-command)
1756 print-file-name-dvi t))))
1758 (defun tex-alt-print ()
1759 "Print the .dvi file made by \\[tex-region], \\[tex-buffer] or \\[tex-file].
1760 Runs the shell command defined by `tex-alt-dvi-print-command'."
1761 (interactive)
1762 (tex-print t))
1764 (defun tex-view ()
1765 "Preview the last `.dvi' file made by running TeX under Emacs.
1766 This means, made using \\[tex-region], \\[tex-buffer] or \\[tex-file].
1767 The variable `tex-dvi-view-command' specifies the shell command for preview.
1768 You must set that variable yourself before using this command,
1769 because there is no standard value that would generally work."
1770 (interactive)
1771 (or tex-dvi-view-command
1772 (error "You must set `tex-dvi-view-command'"))
1773 (let ((tex-dvi-print-command tex-dvi-view-command))
1774 (tex-print)))
1776 (defun tex-append (file-name suffix)
1777 "Append to FILENAME the suffix SUFFIX, using same algorithm TeX uses.
1778 Pascal-based TeX scans for the first period, C TeX uses the last.
1779 No period is retained immediately before SUFFIX,
1780 so normally SUFFIX starts with one."
1781 (if (stringp file-name)
1782 (let ((file (file-name-nondirectory file-name))
1783 trial-name)
1784 ;; Try splitting on last period.
1785 ;; The first-period split can get fooled when two files
1786 ;; named a.tex and a.b.tex are both tex'd;
1787 ;; the last-period split must be right if it matches at all.
1788 (setq trial-name
1789 (concat (file-name-directory file-name)
1790 (substring file 0
1791 (string-match "\\.[^.]*$" file))
1792 suffix))
1793 (if (or (file-exists-p trial-name)
1794 (file-exists-p (concat trial-name ".aux"))) ;for BibTeX files
1795 trial-name
1796 ;; Not found, so split on first period.
1797 (concat (file-name-directory file-name)
1798 (substring file 0
1799 (string-match "\\." file))
1800 suffix)))
1801 " "))
1803 (defun tex-show-print-queue ()
1804 "Show the print queue that \\[tex-print] put your job on.
1805 Runs the shell command defined by `tex-show-queue-command'."
1806 (interactive)
1807 (if (tex-shell-running)
1808 (tex-kill-job)
1809 (tex-start-shell))
1810 (tex-send-command tex-show-queue-command)
1811 (tex-display-shell))
1813 (defun tex-bibtex-file ()
1814 "Run BibTeX on the current buffer's file."
1815 (interactive)
1816 (if (tex-shell-running)
1817 (tex-kill-job)
1818 (tex-start-shell))
1819 (let (shell-dirtrack-verbose
1820 (tex-out-file
1821 (tex-append (file-name-nondirectory (buffer-file-name)) ""))
1822 (file-dir (file-name-directory (buffer-file-name))))
1823 (tex-send-command tex-shell-cd-command file-dir)
1824 (tex-send-command tex-bibtex-command tex-out-file))
1825 (tex-display-shell))
1827 ;;;;
1828 ;;;; LaTeX indentation
1829 ;;;;
1831 (defvar tex-indent-allhanging t)
1832 (defvar tex-indent-arg 4)
1833 (defvar tex-indent-basic 2)
1834 (defvar tex-indent-item tex-indent-basic)
1835 (defvar tex-indent-item-re "\\\\\\(bib\\)?item\\>")
1837 (easy-mmode-defsyntax tex-latex-indent-syntax-table
1838 '((?$ . ".")
1839 (?\( . ".")
1840 (?\) . "."))
1841 "Syntax table used while computing indentation."
1842 :copy tex-mode-syntax-table)
1844 (defun latex-indent (&optional arg)
1845 (with-syntax-table tex-latex-indent-syntax-table
1846 ;; TODO: Rather than ignore $, we should try to be more clever about it.
1847 (let ((indent
1848 (save-excursion
1849 (beginning-of-line)
1850 (latex-find-indent))))
1851 (if (< indent 0) (setq indent 0))
1852 (if (<= (current-column) (current-indentation))
1853 (indent-line-to indent)
1854 (save-excursion (indent-line-to indent))))))
1856 (defun latex-find-indent (&optional virtual)
1857 "Find the proper indentation of text after point.
1858 VIRTUAL if non-nil indicates that we're only trying to find the indentation
1859 in order to determine the indentation of something else.
1860 There might be text before point."
1861 (save-excursion
1862 (skip-chars-forward " \t")
1864 ;; Trust the current indentation, if such info is applicable.
1865 (and virtual (>= (current-indentation) (current-column))
1866 (current-indentation))
1867 ;; Put leading close-paren where the matching open brace would be.
1868 (and (eq (latex-syntax-after) ?\))
1869 (ignore-errors
1870 (save-excursion
1871 (latex-skip-close-parens)
1872 (latex-backward-sexp-1)
1873 (latex-find-indent 'virtual))))
1874 ;; Default (maybe an argument)
1875 (let ((pos (point))
1876 (char (char-after))
1877 ;; Outdent \item if necessary.
1878 (indent (if (looking-at tex-indent-item-re) (- tex-indent-item) 0))
1879 up-list-pos)
1880 ;; Find the previous point which determines our current indentation.
1881 (condition-case err
1882 (progn
1883 (latex-backward-sexp-1)
1884 (while (> (current-column) (current-indentation))
1885 (latex-backward-sexp-1)))
1886 (scan-error
1887 (setq up-list-pos (nth 2 err))))
1888 (cond
1889 ((= (point-min) pos) 0) ; We're really just indenting the first line.
1890 ((integerp up-list-pos)
1891 ;; Have to indent relative to the open-paren.
1892 (goto-char up-list-pos)
1893 (if (and (not tex-indent-allhanging)
1894 (> pos (progn (latex-down-list)
1895 (forward-comment (point-max))
1896 (point))))
1897 ;; Align with the first element after the open-paren.
1898 (current-column)
1899 ;; We're the first element after a hanging brace.
1900 (goto-char up-list-pos)
1901 (+ indent tex-indent-basic (latex-find-indent 'virtual))))
1902 ;; We're now at the "beginning" of a line.
1903 ((not (and (not virtual) (eq (char-after) ?\\)))
1904 ;; Nothing particular here: just keep the same indentation.
1905 (+ indent (current-column)))
1906 ;; We're now looking at a macro call.
1907 ((looking-at tex-indent-item-re)
1908 ;; Indenting relative to an item, have to re-add the outdenting.
1909 (+ indent (current-column) tex-indent-item))
1911 (let ((col (current-column)))
1912 (if (not (eq (char-syntax char) ?\())
1913 ;; If the first char was not an open-paren, there's
1914 ;; a risk that this is really not an argument to the
1915 ;; macro at all.
1916 (+ indent col)
1917 (forward-sexp 1)
1918 (if (< (line-end-position)
1919 (save-excursion (forward-comment (point-max))
1920 (point)))
1921 ;; we're indenting the first argument.
1922 (min (current-column) (+ tex-indent-arg col))
1923 (skip-syntax-forward " ")
1924 (current-column))))))))))
1926 (run-hooks 'tex-mode-load-hook)
1928 (provide 'tex-mode)
1930 ;;; tex-mode.el ends here