1 ;;; tex-mode.el --- TeX, LaTeX, and SliTeX mode commands -*- coding: utf-8 -*-
3 ;; Copyright (C) 1985, 86, 89, 92, 94, 95, 96, 97, 98, 1999, 2002
4 ;; Free Software Foundation, Inc.
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)
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.
33 ;; Pacify the byte-compiler
42 (defgroup tex-file nil
43 "TeX files and directories"
48 "Running external commands from TeX mode"
52 (defgroup tex-view nil
53 "Viewing and printing TeX files"
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
)
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."
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
)
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
)
93 (defcustom tex-offer-save t
94 "*If non-nil, ask about saving modified buffers before \\[tex-file] is run."
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."
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."
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."
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'."
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"))
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.")
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
)
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."
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."
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.
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;
189 (setq tex-alt-dvi-print-command
190 '(format \"lpr -P%s\" (read-string \"Use printer: \")))
192 would tell \\[tex-print] with a prefix argument to ask you which printer to
194 :type
'(choice (string :tag
"Command")
195 (sexp :tag
"Expression"))
199 (defcustom tex-dvi-view-command
'(if (eq window-system
'x
) \"xdvi
\" \"dvi2tty
* | cat -s
\")
200 "*Command used by \\[tex-view] to display a `.dvi' file.
201 If it is a string, that specifies the command directly.
202 If this string contains an asterisk (`*'), that is replaced by the file name;
203 otherwise, the file name, preceded by a space, is added at the end.
205 If the value is a form, it is evaluated to get the command to use."
206 :type
'(choice (const nil
) string sexp
)
210 (defcustom tex-show-queue-command
"lpq"
211 "*Command used by \\[tex-show-print-queue] to show the print queue.
212 Should show the queue(s) that \\[tex-print] puts jobs on."
217 (defcustom tex-default-mode
'latex-mode
218 "*Mode to enter for a new file that might be either TeX or LaTeX.
219 This variable is used when it can't be determined whether the file
220 is plain TeX or LaTeX or what because the file contains no commands.
221 Normally set to either `plain-tex-mode' or `latex-mode'."
226 (defcustom tex-open-quote
"``"
227 "*String inserted by typing \\[tex-insert-quote] to open a quotation."
229 :options
'("``" "\"<" "\"`" "<<" "«")
233 (defcustom tex-close-quote
"''"
234 "*String inserted by typing \\[tex-insert-quote] to close a quotation."
236 :options
'("''" "\">" "\"'" ">>" "»")
239 (defvar tex-last-temp-file nil
240 "Latest temporary file generated by \\[tex-region] and \\[tex-buffer].
241 Deleted when the \\[tex-region] or \\[tex-buffer] is next run, or when the
242 tex shell terminates.")
244 (defvar tex-command
"tex"
245 "*Command to run TeX.
246 If this string contains an asterisk \(`*'\), that is replaced by the file name;
247 otherwise the value of `tex-start-options', the \(shell-quoted\)
248 value of `tex-start-commands', and the file name are added at the end
249 with blanks as separators.
251 In TeX, LaTeX, and SliTeX Mode this variable becomes buffer local.
252 In these modes, use \\[set-variable] if you want to change it for the
255 (defvar tex-trailer nil
256 "String appended after the end of a region sent to TeX by \\[tex-region].")
258 (defvar tex-start-of-header nil
259 "Regular expression used by \\[tex-region] to find start of file's header.")
261 (defvar tex-end-of-header nil
262 "Regular expression used by \\[tex-region] to find end of file's header.")
264 (defvar tex-shell-cd-command
"cd"
265 "Command to give to shell running TeX to change directory.
266 The value of `tex-directory' is appended to this, separated by a space.")
268 (defvar tex-zap-file nil
269 "Temporary file name used for text being sent as input to TeX.
270 Should be a simple file name with no extension or directory specification.")
272 (defvar tex-last-buffer-texed nil
273 "Buffer which was last TeXed.")
275 (defvar tex-print-file nil
276 "File name that \\[tex-print] prints.
277 Set by \\[tex-region], \\[tex-buffer], and \\[tex-file].")
279 (easy-mmode-defsyntax tex-mode-syntax-table
295 "Syntax table used while in TeX mode.")
301 (defcustom latex-imenu-indent-string
". "
302 "*String to add repeated in front of nested sectional units for Imenu.
303 An alternative value is \" . \", if you use a font with a narrow period."
307 (defvar latex-section-alist
308 '(("part" .
0) ("chapter" .
1)
309 ("section" .
2) ("subsection" .
3)
310 ("subsubsection" .
4)
311 ("paragraph" .
5) ("subparagraph" .
6)))
313 (defvar latex-metasection-list
314 '("documentstyle" "documentclass"
315 "begin{document}" "end{document}"
316 "appendix" "frontmatter" "mainmatter" "backmatter"))
318 (defun latex-imenu-create-index ()
319 "Generate an alist for imenu from a LaTeX buffer."
320 (let ((section-regexp
321 (concat "\\\\" (regexp-opt (mapcar 'car latex-section-alist
) t
)
324 (concat "\\\\" (regexp-opt latex-metasection-list t
)))
325 i0 menu case-fold-search
)
327 ;; Find the top-most level in this file but don't allow it to be
328 ;; any deeper than "section" (which is top-level in an article).
329 (goto-char (point-min))
330 (if (search-forward-regexp "\\\\part\\*?[ \t]*{" nil t
)
332 (if (search-forward-regexp "\\\\chapter\\*?[ \t]*{" nil t
)
336 ;; Look for chapters and sections.
337 (goto-char (point-min))
338 (while (search-forward-regexp section-regexp nil t
)
339 (let ((start (match-beginning 0))
341 (i (cdr (assoc (buffer-substring-no-properties
344 latex-section-alist
))))
348 ;; Using sexps allows some use of matching {...} inside
351 (push (cons (concat (apply 'concat
354 latex-imenu-indent-string
))
355 (buffer-substring-no-properties
361 ;; Look for included material.
362 (goto-char (point-min))
363 (while (search-forward-regexp
364 "\\\\\\(include\\|input\\|verbatiminput\\|bibliography\\)\
365 \[ \t]*{\\([^}\n]+\\)}"
367 (push (cons (concat "<<" (buffer-substring-no-properties
370 (if (= (char-after (match-beginning 1)) ?b
)
376 ;; Look for \frontmatter, \mainmatter, \backmatter, and \appendix.
377 (goto-char (point-min))
378 (while (search-forward-regexp metasection-regexp nil t
)
379 (push (cons "--" (match-beginning 0)) menu
))
381 ;; Sort in increasing buffer position order.
382 (sort menu
(function (lambda (a b
) (< (cdr a
) (cdr b
))))))))
388 (defvar latex-outline-regexp
390 (regexp-opt (append latex-metasection-list
391 (mapcar 'car latex-section-alist
)) t
)))
393 (defun latex-outline-level ()
394 (if (looking-at latex-outline-regexp
)
395 (1+ (or (cdr (assoc (match-string 1) latex-section-alist
)) -
1))
399 ;;;; Font-Lock support
402 ;(defvar tex-font-lock-keywords
403 ; ;; Regexps updated with help from Ulrik Dickow <dickow@nbi.dk>.
404 ; '(("\\\\\\(begin\\|end\\|newcommand\\){\\([a-zA-Z0-9\\*]+\\)}"
405 ; 2 font-lock-function-name-face)
406 ; ("\\\\\\(cite\\|label\\|pageref\\|ref\\){\\([^} \t\n]+\\)}"
407 ; 2 font-lock-constant-face)
408 ; ;; It seems a bit dubious to use `bold' and `italic' faces since we might
409 ; ;; not be able to display those fonts.
410 ; ("{\\\\bf\\([^}]+\\)}" 1 'bold keep)
411 ; ("{\\\\\\(em\\|it\\|sl\\)\\([^}]+\\)}" 2 'italic keep)
412 ; ("\\\\\\([a-zA-Z@]+\\|.\\)" . font-lock-keyword-face)
413 ; ("^[ \t\n]*\\\\def[\\\\@]\\(\\w+\\)" 1 font-lock-function-name-face keep))
414 ; ;; Rewritten and extended for LaTeX2e by Ulrik Dickow <dickow@nbi.dk>.
415 ; '(("\\\\\\(begin\\|end\\|newcommand\\){\\([a-zA-Z0-9\\*]+\\)}"
416 ; 2 font-lock-function-name-face)
417 ; ("\\\\\\(cite\\|label\\|pageref\\|ref\\){\\([^} \t\n]+\\)}"
418 ; 2 font-lock-constant-face)
419 ; ("^[ \t]*\\\\def\\\\\\(\\(\\w\\|@\\)+\\)" 1 font-lock-function-name-face)
420 ; "\\\\\\([a-zA-Z@]+\\|.\\)"
421 ; ;; It seems a bit dubious to use `bold' and `italic' faces since we might
422 ; ;; not be able to display those fonts.
423 ; ;; LaTeX2e: \emph{This is emphasized}.
424 ; ("\\\\emph{\\([^}]+\\)}" 1 'italic keep)
425 ; ;; LaTeX2e: \textbf{This is bold}, \textit{...}, \textsl{...}
426 ; ("\\\\text\\(\\(bf\\)\\|it\\|sl\\){\\([^}]+\\)}"
427 ; 3 (if (match-beginning 2) 'bold 'italic) keep)
428 ; ;; Old-style bf/em/it/sl. Stop at `\\' and un-escaped `&', for tables.
429 ; ("\\\\\\(\\(bf\\)\\|em\\|it\\|sl\\)\\>\\(\\([^}&\\]\\|\\\\[^\\]\\)+\\)"
430 ; 3 (if (match-beginning 2) 'bold 'italic) keep))
432 ;; Rewritten with the help of Alexandra Bac <abac@welcome.disi.unige.it>.
433 (defconst tex-font-lock-keywords-1
435 (let* (;; Names of commands whose arg should be fontified as heading, etc.
436 (headings (regexp-opt
437 '("title" "begin" "end" "chapter" "part"
438 "section" "subsection" "subsubsection"
439 "paragraph" "subparagraph" "subsubparagraph"
440 "newcommand" "renewcommand" "providecommand"
441 "newenvironment" "renewenvironment"
442 "newtheorem" "renewtheorem")
444 (variables (regexp-opt
445 '("newcounter" "newcounter*" "setcounter" "addtocounter"
446 "setlength" "addtolength" "settowidth")
448 (includes (regexp-opt
449 '("input" "include" "includeonly" "bibliography"
450 "epsfig" "psfig" "epsf" "nofiles" "usepackage"
451 "documentstyle" "documentclass" "verbatiminput"
452 "includegraphics" "includegraphics*")
456 (opt " *\\(\\[[^]]*\\] *\\)*")
457 ;; This would allow highlighting \newcommand\CMD but requires
458 ;; adapting subgroup numbers below.
459 ;; (arg "\\(?:{\\(\\(?:[^{}\\]+\\|\\\\.\\|{[^}]*}\\)+\\)\\|\\\\[a-z*]+\\)"))
460 (arg "{\\(\\(?:[^{}\\]+\\|\\\\.\\|{[^}]*}\\)+\\)"))
462 ;; display $$ math $$
463 ;; We only mark the match between $$ and $$ because the $$ delimiters
464 ;; themselves have already been marked (along with $..$) by syntactic
465 ;; fontification. Also this is done at the very beginning so as to
466 ;; interact with the other keywords in the same way as $...$ does.
467 (list "\\$\\$\\([^$]+\\)\\$\\$" 1 'tex-math-face
)
469 (list (concat slash headings
"\\*?" opt arg
)
470 ;; If ARG ends up matching too much (if the {} don't match, f.ex)
471 ;; jit-lock will do funny things: when updating the buffer
472 ;; the re-highlighting is only done locally so it will just
473 ;; match the local line, but defer-contextually will
474 ;; match more lines at a time, so ARG will end up matching
475 ;; a lot more, which might suddenly include a comment
476 ;; so you get things highlighted bold when you type them
477 ;; but they get turned back to normal a little while later
478 ;; because "there's already a face there".
479 ;; Using `keep' works around this un-intuitive behavior as well
480 ;; as improves the behavior in the very rare case where you do
481 ;; have a comment in ARG.
482 3 'font-lock-function-name-face
'keep
)
483 (list (concat slash
"\\(?:provide\\|\\(?:re\\)?new\\)command\\** *\\(\\\\[A-Za-z@]+\\)")
484 1 'font-lock-function-name-face
'keep
)
486 (list (concat slash variables
" *" arg
) 2 'font-lock-variable-name-face
)
488 (list (concat slash includes opt arg
) 3 'font-lock-builtin-face
)
489 ;; Definitions. I think.
490 '("^[ \t]*\\\\def *\\\\\\(\\(\\w\\|@\\)+\\)"
491 1 font-lock-function-name-face
))))
492 "Subdued expressions to highlight in TeX modes.")
494 (defconst tex-font-lock-keywords-2
495 (append tex-font-lock-keywords-1
498 ;; Names of commands whose arg should be fontified with fonts.
499 (bold (regexp-opt '("textbf" "textsc" "textup"
500 "boldsymbol" "pmb") t
))
501 (italic (regexp-opt '("textit" "textsl" "emph") t
))
502 (type (regexp-opt '("texttt" "textmd" "textrm" "textsf") t
))
504 ;; Names of commands whose arg should be fontified as a citation.
505 (citations (regexp-opt
506 '("label" "ref" "pageref" "vref" "eqref"
507 "cite" "nocite" "index" "glossary" "bibitem"
508 ;; These are text, rather than citations.
509 ;; "caption" "footnote" "footnotemark" "footnotetext"
513 ;; Names of commands that should be fontified.
514 (specials-1 (regexp-opt '("\\" "\\*") t
)) ;; "-"
515 (specials-2 (regexp-opt
516 '("linebreak" "nolinebreak" "pagebreak" "nopagebreak"
517 "newline" "newpage" "clearpage" "cleardoublepage"
518 "displaybreak" "allowdisplaybreaks"
519 "enlargethispage") t
))
520 (general "\\([a-zA-Z@]+\\**\\|[^ \t\n]\\)")
524 (opt " *\\(\\[[^]]*\\] *\\)*")
525 (args "\\(\\(?:[^{}&\\]+\\|\\\\.\\|{[^}]*}\\)+\\)")
526 (arg "{\\(\\(?:[^{}\\]+\\|\\\\.\\|{[^}]*}\\)+\\)"))
530 (list (concat slash citations opt arg
) 3 'font-lock-constant-face
)
532 ;; Text between `` quotes ''.
533 (cons (concat (regexp-opt `("``" "\"<" "\"`" "<<" "«") t
)
534 "[^'\">{]+" ;a bit pessimistic
535 (regexp-opt `("''" "\">" "\"'" ">>" "»") t
))
536 'font-lock-string-face
)
538 ;; Command names, special and general.
539 (cons (concat slash specials-1
) 'font-lock-warning-face
)
540 (list (concat "\\(" slash specials-2
"\\)\\([^a-zA-Z@]\\|\\'\\)")
541 1 'font-lock-warning-face
)
542 (concat slash general
)
544 ;; Font environments. It seems a bit dubious to use `bold' etc. faces
545 ;; since we might not be able to display those fonts.
546 (list (concat slash bold
" *" arg
) 2 '(quote bold
) 'append
)
547 (list (concat slash italic
" *" arg
) 2 '(quote italic
) 'append
)
548 ;; (list (concat slash type arg) 2 '(quote bold-italic) 'append)
550 ;; Old-style bf/em/it/sl. Stop at `\\' and un-escaped `&', for tables.
551 (list (concat "\\\\\\(em\\|it\\|sl\\)\\>" args
)
552 2 '(quote italic
) 'append
)
553 ;; This is separate from the previous one because of cases like
554 ;; {\em foo {\bf bar} bla} where both match.
555 (list (concat "\\\\bf\\>" args
) 1 '(quote bold
) 'append
)))))
556 "Gaudy expressions to highlight in TeX modes.")
558 (defun tex-font-lock-suscript (pos)
559 (unless (or (memq (get-text-property pos
'face
)
560 '(font-lock-constant-face font-lock-builtin-face
561 font-lock-comment-face tex-verbatim-face
))
562 ;; Check for backslash quoting
565 (while (eq (char-before pos
) ?
\\)
566 (setq pos
(1- pos
) odd
(not odd
)))
568 (if (eq (char-after pos
) ?_
)
569 '(face subscript display
(raise -
0.3))
570 '(face superscript display
(raise +0.3)))))
572 (defconst tex-font-lock-keywords-3
573 (append tex-font-lock-keywords-2
575 (let ((general "\\([a-zA-Z@]+\\|[^ \t\n]\\)")
577 ;; This is not the same regexp as before: it has a `+' removed.
578 ;; The + makes the matching faster in the above cases (where we can
579 ;; exit as soon as the match fails) but would make this matching
580 ;; degenerate to nasty complexity (because we try to match the
581 ;; closing brace, which forces trying all matching combinations).
582 (arg "{\\(?:[^{}\\]\\|\\\\.\\|{[^}]*}\\)*"))
583 `((,(concat "[_^] *\\([^\n\\{}]\\|" slash general
"\\|" arg
"}\\)")
584 (1 (tex-font-lock-suscript (match-beginning 0))
586 "Experimental expressions to highlight in TeX modes.")
588 (defvar tex-font-lock-keywords tex-font-lock-keywords-1
589 "Default expressions to highlight in TeX modes.")
591 (defvar tex-verbatim-environments
592 '("verbatim" "verbatim*"))
594 (defvar tex-font-lock-syntactic-keywords
595 (let ((verbs (regexp-opt tex-verbatim-environments t
)))
596 `((,(concat "^\\\\begin *{" verbs
"}.*\\(\n\\)") 2 "|")
597 (,(concat "^\\\\end *{" verbs
"}\\(.?\\)") 2
598 (unless (<= (match-beginning 0) (point-min))
599 (put-text-property (1- (match-beginning 0)) (match-beginning 0)
600 'syntax-table
(string-to-syntax "|"))
602 ;; ("^\\(\\\\\\)begin *{comment}" 1 "< b")
603 ;; ("^\\\\end *{comment}.*\\(\n\\)" 1 "> b")
604 ("\\\\verb\\**\\([^a-z@*]\\)" 1 "\""))))
606 (defun tex-font-lock-unfontify-region (beg end
)
607 (font-lock-default-unfontify-region beg end
)
609 (let ((next (next-single-property-change beg
'display nil end
))
610 (prop (get-text-property beg
'display
)))
611 (if (and (eq (car-safe prop
) 'raise
)
612 (member (car-safe (cdr prop
)) '(-0.3
+0.3))
614 (put-text-property beg next
'display nil
))
618 '((t :height
0.8)) ;; :raise 0.3
619 "Face used for superscripts.")
621 '((t :height
0.8)) ;; :raise -0.3
622 "Face used for subscripts.")
624 (defface tex-math-face
625 '((t :inherit font-lock-string-face
))
626 "Face used to highlight TeX math expressions.")
627 (defvar tex-math-face
'tex-math-face
)
628 (defface tex-verbatim-face
629 ;; '((t :inherit font-lock-string-face))
630 '((t :family
"courier"))
631 "Face used to highlight TeX verbatim environments.")
632 (defvar tex-verbatim-face
'tex-verbatim-face
)
634 ;; Use string syntax but math face for $...$.
635 (defun tex-font-lock-syntactic-face-function (state)
636 (let ((char (nth 3 state
)))
638 ((not char
) font-lock-comment-face
)
639 ((eq char ?$
) tex-math-face
)
641 (when (char-valid-p char
)
642 ;; This is a \verb?...? construct. Let's find the end and mark it.
644 (skip-chars-forward (string ?^ char
)) ;; Use `end' ?
645 (when (eq (char-syntax (preceding-char)) ?
/)
646 (put-text-property (1- (point)) (point) 'syntax-table
'(1)))
648 (put-text-property (point) (1+ (point)) 'syntax-table
'(7)))))
649 tex-verbatim-face
))))
652 (defun tex-define-common-keys (keymap)
653 "Define the keys that we want defined both in TeX mode and in the TeX shell."
654 (define-key keymap
"\C-c\C-k" 'tex-kill-job
)
655 (define-key keymap
"\C-c\C-l" 'tex-recenter-output-buffer
)
656 (define-key keymap
"\C-c\C-q" 'tex-show-print-queue
)
657 (define-key keymap
"\C-c\C-p" 'tex-print
)
658 (define-key keymap
"\C-c\C-v" 'tex-view
)
660 (define-key keymap
[menu-bar tex
] (cons "TeX" (make-sparse-keymap "TeX")))
662 (define-key keymap
[menu-bar tex tex-kill-job
]
663 '(menu-item "Tex Kill" tex-kill-job
:enable
(tex-shell-running)))
664 (define-key keymap
[menu-bar tex tex-recenter-output-buffer
]
665 '(menu-item "Tex Recenter" tex-recenter-output-buffer
666 :enable
(get-buffer "*tex-shell*")))
667 (define-key keymap
[menu-bar tex tex-show-print-queue
]
668 '("Show Print Queue" . tex-show-print-queue
))
669 (define-key keymap
[menu-bar tex tex-alt-print
]
670 '(menu-item "Tex Print (alt printer)" tex-alt-print
671 :enable
(stringp tex-print-file
)))
672 (define-key keymap
[menu-bar tex tex-print
]
673 '(menu-item "Tex Print" tex-print
:enable
(stringp tex-print-file
)))
674 (define-key keymap
[menu-bar tex tex-view
]
675 '(menu-item "Tex View" tex-view
:enable
(stringp tex-print-file
))))
678 (let ((map (make-sparse-keymap)))
679 (set-keymap-parent map text-mode-map
)
680 (tex-define-common-keys map
)
681 (define-key map
"\"" 'tex-insert-quote
)
682 (define-key map
"(" 'skeleton-pair-insert-maybe
)
683 (define-key map
"{" 'skeleton-pair-insert-maybe
)
684 (define-key map
"[" 'skeleton-pair-insert-maybe
)
685 (define-key map
"$" 'skeleton-pair-insert-maybe
)
686 (define-key map
"\n" 'tex-terminate-paragraph
)
687 (define-key map
"\M-\r" 'latex-insert-item
)
688 (define-key map
"\C-c}" 'up-list
)
689 (define-key map
"\C-c{" 'tex-insert-braces
)
690 (define-key map
"\C-c\C-r" 'tex-region
)
691 (define-key map
"\C-c\C-b" 'tex-buffer
)
692 (define-key map
"\C-c\C-f" 'tex-file
)
693 (define-key map
"\C-c\C-i" 'tex-bibtex-file
)
694 (define-key map
"\C-c\C-o" 'latex-insert-block
)
695 (define-key map
"\C-c\C-e" 'latex-close-block
)
696 (define-key map
"\C-c\C-u" 'tex-goto-last-unclosed-latex-block
)
697 (define-key map
"\C-c\C-m" 'tex-feed-input
)
698 (define-key map
[(control return
)] 'tex-feed-input
)
699 (define-key map
[menu-bar tex tex-bibtex-file
]
700 '("BibTeX File" . tex-bibtex-file
))
701 (define-key map
[menu-bar tex tex-validate-region
]
702 '(menu-item "Validate Region" tex-validate-region
:enable mark-active
))
703 (define-key map
[menu-bar tex tex-validate-buffer
]
704 '("Validate Buffer" . tex-validate-buffer
))
705 (define-key map
[menu-bar tex tex-region
]
706 '(menu-item "TeX Region" tex-region
:enable mark-active
))
707 (define-key map
[menu-bar tex tex-buffer
]
708 '("TeX Buffer" . tex-buffer
))
709 (define-key map
[menu-bar tex tex-file
] '("TeX File" . tex-file
))
711 "Keymap shared by TeX modes.")
713 (defvar latex-mode-map
714 (let ((map (make-sparse-keymap)))
715 (set-keymap-parent map tex-mode-map
)
717 "Keymap for `latex-mode'. See also `tex-mode-map'.")
719 (defvar plain-tex-mode-map
720 (let ((map (make-sparse-keymap)))
721 (set-keymap-parent map tex-mode-map
)
723 "Keymap for `plain-tex-mode'. See also `tex-mode-map'.")
725 (defvar tex-shell-map
726 (let ((m (make-sparse-keymap)))
727 (set-keymap-parent m shell-mode-map
)
728 (tex-define-common-keys m
)
730 "Keymap for the TeX shell.
731 Inherits `shell-mode-map' with a few additions.")
733 (defvar tex-face-alist
736 (bold-italic .
"{\\bi ") ; hypothetical
737 (underline .
"\\underline{")
738 (default .
"{\\rm "))
739 "Alist of face and TeX font name for facemenu.")
741 (defvar tex-latex-face-alist
742 `((italic .
"{\\em ")
744 "Alist of face and LaTeX font name for facemenu.")
746 ;; This would be a lot simpler if we just used a regexp search,
747 ;; but then it would be too slow.
750 "Major mode for editing files of input for TeX, LaTeX, or SliTeX.
751 Tries to determine (by looking at the beginning of the file) whether
752 this file is for plain TeX, LaTeX, or SliTeX and calls `plain-tex-mode',
753 `latex-mode', or `slitex-mode', respectively. If it cannot be determined,
754 such as if there are no commands in the file, the value of `tex-default-mode'
755 says which mode to use."
757 (let ((mode tex-default-mode
) slash comment
)
759 (goto-char (point-min))
760 (while (and (setq slash
(search-forward "\\" nil t
))
761 (setq comment
(let ((search-end (point)))
764 (search-forward "%" search-end t
))))))
765 (when (and slash
(not comment
))
770 (regexp-opt '("documentstyle" "documentclass"
771 "begin" "subsection" "section"
772 "part" "chapter" "newcommand") 'words
)
773 "\\|NeedsTeXFormat{LaTeX")))
775 "document\\(style\\|class\\)\\(\\[.*\\]\\)?{slides}")
782 (defalias 'TeX-mode
'tex-mode
)
784 (defalias 'plain-TeX-mode
'plain-tex-mode
)
786 (defalias 'LaTeX-mode
'latex-mode
)
789 (define-derived-mode plain-tex-mode text-mode
"TeX"
790 "Major mode for editing files of input for plain TeX.
791 Makes $ and } display the characters they match.
792 Makes \" insert `` when it seems to be the beginning of a quotation,
793 and '' when it appears to be the end; it inserts \" only after a \\.
795 Use \\[tex-region] to run TeX on the current region, plus a \"header\"
796 copied from the top of the file (containing macro definitions, etc.),
797 running TeX under a special subshell. \\[tex-buffer] does the whole buffer.
798 \\[tex-file] saves the buffer and then processes the file.
799 \\[tex-print] prints the .dvi file made by any of these.
800 \\[tex-view] previews the .dvi file made by any of these.
801 \\[tex-bibtex-file] runs bibtex on the file of the current buffer.
803 Use \\[tex-validate-buffer] to check buffer for paragraphs containing
804 mismatched $'s or braces.
807 \\{plain-tex-mode-map}
811 Command string used by \\[tex-region] or \\[tex-buffer].
813 Directory in which to create temporary files for TeX jobs
814 run by \\[tex-region] or \\[tex-buffer].
815 tex-dvi-print-command
816 Command string used by \\[tex-print] to print a .dvi file.
817 tex-alt-dvi-print-command
818 Alternative command string used by \\[tex-print] (when given a prefix
819 argument) to print a .dvi file.
821 Command string used by \\[tex-view] to preview a .dvi file.
822 tex-show-queue-command
823 Command string used by \\[tex-show-print-queue] to show the print
824 queue that \\[tex-print] put your job on.
826 Entering Plain-tex mode runs the hook `text-mode-hook', then the hook
827 `tex-mode-hook', and finally the hook `plain-tex-mode-hook'. When the
828 special subshell is initiated, the hook `tex-shell-hook' is run."
829 (tex-common-initialization)
830 (setq tex-command tex-run-command
)
831 (setq tex-start-of-header
"%\\*\\*start of header")
832 (setq tex-end-of-header
"%\\*\\*end of header")
833 (setq tex-trailer
"\\bye\n")
834 (run-hooks 'tex-mode-hook
))
837 (define-derived-mode latex-mode text-mode
"LaTeX"
838 "Major mode for editing files of input for LaTeX.
839 Makes $ and } display the characters they match.
840 Makes \" insert `` when it seems to be the beginning of a quotation,
841 and '' when it appears to be the end; it inserts \" only after a \\.
843 Use \\[tex-region] to run LaTeX on the current region, plus the preamble
844 copied from the top of the file (containing \\documentstyle, etc.),
845 running LaTeX under a special subshell. \\[tex-buffer] does the whole buffer.
846 \\[tex-file] saves the buffer and then processes the file.
847 \\[tex-print] prints the .dvi file made by any of these.
848 \\[tex-view] previews the .dvi file made by any of these.
849 \\[tex-bibtex-file] runs bibtex on the file of the current buffer.
851 Use \\[tex-validate-buffer] to check buffer for paragraphs containing
852 mismatched $'s or braces.
859 Command string used by \\[tex-region] or \\[tex-buffer].
861 Directory in which to create temporary files for LaTeX jobs
862 run by \\[tex-region] or \\[tex-buffer].
863 tex-dvi-print-command
864 Command string used by \\[tex-print] to print a .dvi file.
865 tex-alt-dvi-print-command
866 Alternative command string used by \\[tex-print] (when given a prefix
867 argument) to print a .dvi file.
869 Command string used by \\[tex-view] to preview a .dvi file.
870 tex-show-queue-command
871 Command string used by \\[tex-show-print-queue] to show the print
872 queue that \\[tex-print] put your job on.
874 Entering Latex mode runs the hook `text-mode-hook', then
875 `tex-mode-hook', and finally `latex-mode-hook'. When the special
876 subshell is initiated, `tex-shell-hook' is run."
877 (tex-common-initialization)
878 (setq tex-command latex-run-command
)
879 (setq tex-start-of-header
"\\\\document\\(style\\|class\\)")
880 (setq tex-end-of-header
"\\\\begin\\s-*{document}")
881 (setq tex-trailer
"\\end\\s-*{document}\n")
882 ;; A line containing just $$ is treated as a paragraph separator.
883 ;; A line starting with $$ starts a paragraph,
884 ;; but does not separate paragraphs if it has more stuff on it.
885 (setq paragraph-start
886 (concat "[\f%]\\|[ \t]*\\($\\|\\$\\$\\|"
888 "\\\\" (regexp-opt (append
889 (mapcar 'car latex-section-alist
)
890 '("begin" "label" "end"
891 "item" "bibitem" "newline" "noindent"
892 "newpage" "footnote" "marginpar"
893 "parbox" "caption")) t
)
894 "\\>\\|\\\\[a-z]*" (regexp-opt '("space" "skip" "page") t
)
896 (setq paragraph-separate
897 (concat "[\f%]\\|[ \t]*\\($\\|"
899 "\\\\" (regexp-opt (append
900 (mapcar 'car latex-section-alist
)
901 '("begin" "label" "end" )) t
)
902 "\\>\\|\\\\\\(" (regexp-opt '("item" "bibitem" "newline"
903 "noindent" "newpage" "footnote"
904 "marginpar" "parbox" "caption"))
905 "\\|\\$\\$\\|[a-z]*\\(space\\|skip\\|page[a-z]*\\)"
906 "\\>\\)[ \t]*\\($\\|%\\)\\)"))
907 (set (make-local-variable 'imenu-create-index-function
)
908 'latex-imenu-create-index
)
909 (set (make-local-variable 'tex-face-alist
) tex-latex-face-alist
)
910 (add-hook 'fill-nobreak-predicate
'latex-fill-nobreak-predicate nil t
)
911 (set (make-local-variable 'indent-line-function
) 'latex-indent
)
912 (set (make-local-variable 'fill-indent-according-to-mode
) t
)
913 (set (make-local-variable 'outline-regexp
) latex-outline-regexp
)
914 (set (make-local-variable 'outline-level
) 'latex-outline-level
)
915 (set (make-local-variable 'forward-sexp-function
) 'latex-forward-sexp
)
916 (set (make-local-variable 'skeleton-end-hook
) nil
)
917 (run-hooks 'tex-mode-hook
))
920 (define-derived-mode slitex-mode latex-mode
"SliTeX"
921 "Major mode for editing files of input for SliTeX.
922 Makes $ and } display the characters they match.
923 Makes \" insert `` when it seems to be the beginning of a quotation,
924 and '' when it appears to be the end; it inserts \" only after a \\.
926 Use \\[tex-region] to run SliTeX on the current region, plus the preamble
927 copied from the top of the file (containing \\documentstyle, etc.),
928 running SliTeX under a special subshell. \\[tex-buffer] does the whole buffer.
929 \\[tex-file] saves the buffer and then processes the file.
930 \\[tex-print] prints the .dvi file made by any of these.
931 \\[tex-view] previews the .dvi file made by any of these.
932 \\[tex-bibtex-file] runs bibtex on the file of the current buffer.
934 Use \\[tex-validate-buffer] to check buffer for paragraphs containing
935 mismatched $'s or braces.
942 Command string used by \\[tex-region] or \\[tex-buffer].
944 Directory in which to create temporary files for SliTeX jobs
945 run by \\[tex-region] or \\[tex-buffer].
946 tex-dvi-print-command
947 Command string used by \\[tex-print] to print a .dvi file.
948 tex-alt-dvi-print-command
949 Alternative command string used by \\[tex-print] (when given a prefix
950 argument) to print a .dvi file.
952 Command string used by \\[tex-view] to preview a .dvi file.
953 tex-show-queue-command
954 Command string used by \\[tex-show-print-queue] to show the print
955 queue that \\[tex-print] put your job on.
957 Entering SliTeX mode runs the hook `text-mode-hook', then the hook
958 `tex-mode-hook', then the hook `latex-mode-hook', and finally the hook
959 `slitex-mode-hook'. When the special subshell is initiated, the hook
960 `tex-shell-hook' is run."
961 (setq tex-command slitex-run-command
)
962 (setq tex-start-of-header
"\\\\documentstyle{slides}\\|\\\\documentclass{slides}"))
964 (defun tex-common-initialization ()
965 (set-syntax-table tex-mode-syntax-table
)
966 ;; Regexp isearch should accept newline and formfeed as whitespace.
967 (set (make-local-variable 'search-whitespace-regexp
) "[ \t\r\n\f]+")
968 ;; A line containing just $$ is treated as a paragraph separator.
969 (set (make-local-variable 'paragraph-start
)
970 "[ \t]*$\\|[\f\\\\%]\\|[ \t]*\\$\\$")
971 ;; A line starting with $$ starts a paragraph,
972 ;; but does not separate paragraphs if it has more stuff on it.
973 (set (make-local-variable 'paragraph-separate
)
974 "[ \t]*$\\|[\f\\\\%]\\|[ \t]*\\$\\$[ \t]*$")
975 (set (make-local-variable 'comment-start
) "%")
976 (set (make-local-variable 'comment-add
) 1)
977 (set (make-local-variable 'comment-start-skip
)
978 "\\(\\(^\\|[^\\\n]\\)\\(\\\\\\\\\\)*\\)\\(%+ *\\)")
979 (set (make-local-variable 'parse-sexp-ignore-comments
) t
)
980 (set (make-local-variable 'compare-windows-whitespace
)
981 'tex-categorize-whitespace
)
982 (set (make-local-variable 'facemenu-add-face-function
)
984 (let ((face-text (cdr (assq face tex-face-alist
))))
987 (error "Face %s not configured for %s mode" face mode-name
)))))
988 (set (make-local-variable 'facemenu-end-add-face
) "}")
989 (set (make-local-variable 'facemenu-remove-face-function
) t
)
990 (set (make-local-variable 'font-lock-defaults
)
991 '((tex-font-lock-keywords tex-font-lock-keywords-1
992 tex-font-lock-keywords-2 tex-font-lock-keywords-3
)
993 nil nil
((?$ .
"\"")) nil
994 ;; Who ever uses that anyway ???
995 (font-lock-mark-block-function . mark-paragraph
)
996 (font-lock-syntactic-face-function
997 . tex-font-lock-syntactic-face-function
)
998 (font-lock-unfontify-region-function
999 . tex-font-lock-unfontify-region
)
1000 (font-lock-syntactic-keywords
1001 . tex-font-lock-syntactic-keywords
)
1002 (parse-sexp-lookup-properties . t
)))
1003 ;; TABs in verbatim environments don't do what you think.
1004 (set (make-local-variable 'indent-tabs-mode
) nil
)
1005 ;; Other vars that should be buffer-local.
1006 (make-local-variable 'tex-command
)
1007 (make-local-variable 'tex-start-of-header
)
1008 (make-local-variable 'tex-end-of-header
)
1009 (make-local-variable 'tex-trailer
))
1011 (defun tex-categorize-whitespace (backward-limit)
1012 ;; compare-windows-whitespace is set to this.
1013 ;; This is basically a finite-state machine.
1014 ;; Returns a symbol telling how TeX would treat
1015 ;; the whitespace we are looking at: null, space, or par.
1016 (let ((category 'null
)
1018 (skip-chars-backward " \t\n\f" backward-limit
)
1020 (cond ((looking-at "[ \t]+")
1021 (goto-char (match-end 0))
1022 (if (eq category
'null
)
1023 (setq category
'space
)))
1025 (cond ((eq category
'newline
)
1026 (setq category
'par
)
1027 (setq not-finished nil
))
1029 (setq category
'newline
) ;a strictly internal state
1030 (goto-char (match-end 0)))))
1032 (setq category
'par
)
1033 (setq not-finished nil
))
1035 (setq not-finished nil
))))
1036 (skip-chars-forward " \t\n\f")
1037 (if (eq category
'newline
)
1038 'space
;TeX doesn't distinguish
1041 (defun tex-insert-quote (arg)
1042 "Insert the appropriate quote marks for TeX.
1043 Inserts the value of `tex-open-quote' (normally ``) or `tex-close-quote'
1044 \(normally '') depending on the context. With prefix argument, always
1045 inserts \" characters."
1047 (if (or arg
(memq (char-syntax (preceding-char)) '(?
/ ?
\\))
1048 (eq (get-text-property (point) 'face
) 'tex-verbatim-face
)
1050 (backward-char (length tex-open-quote
))
1051 (when (or (looking-at (regexp-quote tex-open-quote
))
1052 (looking-at (regexp-quote tex-close-quote
)))
1053 (delete-char (length tex-open-quote
))
1055 (self-insert-command (prefix-numeric-value arg
))
1056 (insert (if (memq (char-syntax (preceding-char)) '(?\
( ?
> ?\
))
1057 tex-open-quote tex-close-quote
))))
1059 (defun tex-validate-buffer ()
1060 "Check current buffer for paragraphs containing mismatched braces or $s.
1061 Their positions are recorded in the buffer `*Occur*'.
1062 To find a particular invalidity from `*Occur*', switch to that buffer
1063 and type C-c C-c or click with mouse-2
1064 on the line for the invalidity you want to see."
1066 (let ((buffer (current-buffer))
1067 (prevpos (point-min))
1070 (with-output-to-temp-buffer "*Occur*"
1071 (princ "Mismatches:\n")
1073 (set-buffer standard-output
)
1075 ;; This won't actually work...Really, this whole thing should
1076 ;; be rewritten instead of being a hack on top of occur.
1077 (setq occur-revert-arguments
(list nil
0 (list buffer
))))
1079 (goto-char (point-max))
1080 (while (and (not (bobp)))
1083 ;; Scan the previous paragraph for invalidities.
1084 (if (search-backward "\n\n" nil t
)
1086 (setq prev-end
(point))
1088 (goto-char (setq prev-end
(point-min))))
1089 (or (tex-validate-region (point) end
)
1091 (end (save-excursion (forward-line 1) (point)))
1094 (setq start
(point))
1095 ;; Keep track of line number as we scan,
1096 ;; in a cumulative fashion.
1098 (setq linenum
(- linenum
(count-lines prevpos
(point))))
1099 (setq linenum
(1+ (count-lines 1 start
))))
1100 (setq prevpos
(point))
1101 ;; Mention this mismatch in *Occur*.
1102 ;; Since we scan from end of buffer to beginning,
1103 ;; add each mismatch at the beginning of *Occur*.
1105 (setq tem
(point-marker))
1106 (set-buffer standard-output
)
1107 (goto-char (point-min))
1108 ;; Skip "Mismatches:" header line.
1110 (setq num-matches
(1+ num-matches
))
1111 (insert-buffer-substring buffer start end
)
1112 (let (text-beg (text-end (point-marker)))
1113 (forward-char (- start end
))
1114 (setq text-beg
(point-marker))
1115 (insert (format "%3d: " linenum
))
1116 (add-text-properties
1117 text-beg
(- text-end
1)
1118 '(mouse-face highlight
1119 help-echo
"mouse-2: go to this invalidity"))
1120 (put-text-property text-beg
(- text-end
1)
1121 'occur-target tem
)))))
1122 (goto-char prev-end
))))
1123 (with-current-buffer standard-output
1124 (if (eq num-matches
0)
1127 (message "%d mismatches found" num-matches
))))))
1129 (defun tex-validate-region (start end
)
1130 "Check for mismatched braces or $'s in region.
1131 Returns t if no mismatches. Returns nil and moves point to suspect
1132 area if a mismatch is found."
1134 (let ((failure-point nil
) (max-possible-sexps (- end start
)))
1138 (narrow-to-region start end
)
1139 ;; First check that the open and close parens balance in numbers.
1141 (while (<= 0 (setq max-possible-sexps
(1- max-possible-sexps
)))
1143 ;; Now check that like matches like.
1145 (while (progn (skip-syntax-forward "^(")
1147 (let ((match (matching-paren (following-char))))
1150 (or (= (preceding-char) match
)
1151 (error "Mismatched parentheses"))))
1154 (skip-syntax-forward " .>")
1155 (setq failure-point
(point)))))
1156 (if failure-point
(goto-char failure-point
))
1157 (not failure-point
)))
1159 (defun tex-terminate-paragraph (inhibit-validation)
1160 "Insert two newlines, breaking a paragraph for TeX.
1161 Check for mismatched braces or $s in paragraph being terminated.
1162 A prefix arg inhibits the checking."
1164 (or inhibit-validation
1166 (tex-validate-region
1168 (search-backward "\n\n" nil
'move
)
1171 (message "Paragraph being closed appears to contain a mismatch"))
1174 (define-skeleton tex-insert-braces
1175 "Make a pair of braces and be poised to type inside of them."
1179 ;; This function is used as the value of fill-nobreak-predicate
1180 ;; in LaTeX mode. Its job is to prevent line-breaking inside
1181 ;; of a \verb construct.
1182 (defun latex-fill-nobreak-predicate ()
1184 (skip-chars-backward " ")
1185 ;; Don't break after \ since `\ ' has special meaning.
1186 (or (and (not (bobp)) (memq (char-syntax (char-before)) '(?
\\ ?
/)))
1187 (let ((opoint (point))
1190 (while (re-search-forward "\\\\verb\\(.\\)" opoint t
)
1191 (unless (re-search-forward (regexp-quote (match-string 1)) opoint t
)
1195 (defvar latex-block-default
"enumerate")
1197 ;; Like tex-insert-braces, but for LaTeX.
1198 (defalias 'tex-latex-block
'latex-insert-block
)
1199 (define-skeleton latex-insert-block
1200 "Create a matching pair of lines \\begin[OPT]{NAME} and \\end{NAME} at point.
1201 Puts point on a blank line between them."
1202 (let ((choice (completing-read (format "LaTeX block name [%s]: "
1203 latex-block-default
)
1204 (append latex-block-names
1205 latex-standard-block-names
)
1206 nil nil nil nil latex-block-default
)))
1207 (setq latex-block-default choice
)
1208 (unless (or (member choice latex-standard-block-names
)
1209 (member choice latex-block-names
))
1210 ;; Remember new block names for later completion.
1211 (push choice latex-block-names
))
1213 \n "\\begin{" str
"}"
1214 ?\
[ (skeleton-read "[options]: ") & ?\
] | -
1
1216 "\\end{" str
"}" > \n)
1218 (define-skeleton latex-insert-item
1219 "Insert a \item macro."
1225 ;;;; LaTeX syntax navigation
1228 (defun tex-last-unended-begin ()
1229 "Leave point at the beginning of the last `\\begin{...}' that is unended."
1231 (while (and (re-search-backward "\\\\\\(begin\\|end\\)\\s *{")
1232 (looking-at "\\\\end"))
1233 (tex-last-unended-begin))
1234 (search-failed (error "Couldn't find unended \\begin"))))
1236 (defun tex-next-unmatched-end ()
1237 "Leave point at the end of the next `\\end' that is unended."
1238 (while (and (re-search-forward "\\\\\\(begin\\|end\\)\\s *{[^}]+}")
1239 (save-excursion (goto-char (match-beginning 0))
1240 (looking-at "\\\\begin")))
1241 (tex-next-unmatched-end)))
1243 (defun tex-goto-last-unclosed-latex-block ()
1244 "Move point to the last unclosed \\begin{...}.
1245 Mark is left at original location."
1249 (tex-last-unended-begin)
1250 (setq spot
(point)))
1254 (defun latex-backward-sexp-1 ()
1255 "Like (backward-sexp 1) but aware of multi-char elements."
1257 (forward-sexp-function))
1259 (if (looking-at "\\\\begin\\>")
1261 (list "Containing expression ends prematurely"
1262 (point) (prog1 (point) (goto-char pos
))))
1263 (when (eq (char-after) ?
{)
1264 (let ((newpos (point)))
1265 (when (ignore-errors (backward-sexp 1) t
)
1266 (if (looking-at "\\\\end\\>")
1267 (tex-last-unended-begin)
1268 (goto-char newpos
))))))))
1270 (defun latex-forward-sexp-1 ()
1271 "Like (forward-sexp 1) but aware of multi-char elements."
1273 (forward-sexp-function))
1275 (let ((newpos (point)))
1276 (skip-syntax-backward "/w")
1278 ((looking-at "\\\\end\\>")
1280 (list "Containing expression ends prematurely"
1283 (progn (ignore-errors (forward-sexp 2)) (point))
1285 ((looking-at "\\\\begin\\>")
1286 (goto-char (match-end 0))
1287 (tex-next-unmatched-end))
1288 (t (goto-char newpos
))))))
1290 (defun latex-forward-sexp (&optional arg
)
1291 "Like `forward-sexp' but aware of multi-char elements."
1293 (unless arg
(setq arg
1))
1294 (let ((pos (point)))
1299 (progn (latex-forward-sexp-1) (1- arg
))
1300 (progn (latex-backward-sexp-1) (1+ arg
)))))
1303 (signal (car err
) (cdr err
))))))
1305 (defun latex-syntax-after ()
1306 "Like (char-syntax (char-after)) but aware of multi-char elements."
1307 (if (looking-at "\\\\end\\>") ?\
) (char-syntax (following-char))))
1309 (defun latex-skip-close-parens ()
1310 "Like (skip-syntax-forward \" )\") but aware of multi-char elements."
1311 (let ((forward-sexp-function nil
))
1312 (while (progn (skip-syntax-forward " )")
1313 (looking-at "\\\\end\\>"))
1316 (defun latex-down-list ()
1317 "Like (down-list 1) but aware of multi-char elements."
1318 (forward-comment (point-max))
1319 (let ((forward-sexp-function nil
))
1320 (if (not (looking-at "\\\\begin\\>"))
1324 (while (looking-at "[ \t]*[[{(]")
1325 (with-syntax-table tex-mode-syntax-table
1328 (defalias 'tex-close-latex-block
'latex-close-block
)
1329 (define-skeleton latex-close-block
1330 "Create an \\end{...} to match the last unclosed \\begin{...}."
1332 (tex-last-unended-begin)
1333 (if (not (looking-at "\\\\begin\\(\\s *{[^}\n]*}\\)")) '("{" _
"}")
1335 \n "\\end" str
> \n)
1337 (define-skeleton latex-split-block
1338 "Split the enclosing environment by inserting \\end{..}\\begin{..} at point."
1340 (tex-last-unended-begin)
1341 (if (not (looking-at "\\\\begin\\(\\s *{[^}\n]*}\\)")) '("{" _
"}")
1342 (prog1 (match-string 1)
1343 (goto-char (match-end 1))
1344 (setq v1
(buffer-substring (point)
1346 (while (looking-at "[ \t]*[[{]")
1349 \n "\\end" str
> \n _
\n "\\begin" str v1
> \n)
1351 (defconst tex-discount-args-cmds
1352 '("begin" "end" "input" "special" "cite" "ref" "include" "includeonly"
1353 "documentclass" "usepackage" "label")
1354 "TeX commands whose arguments should not be counted as text.")
1356 (defun tex-count-words (begin end
)
1357 "Count the number of words in the buffer."
1359 (if (and transient-mark-mode mark-active
)
1360 (list (region-beginning) (region-end))
1361 (list (point-min) (point-max))))
1362 ;; TODO: skip comments and math and maybe some environments.
1366 (while (and (< (point) end
) (re-search-forward "\\<" end t
))
1367 (if (not (eq (char-syntax (preceding-char)) ?
/))
1369 ;; Don't count single-char words.
1370 (unless (looking-at ".\\>") (incf count
))
1373 (buffer-substring-no-properties
1374 (point) (progn (when (zerop (skip-chars-forward "a-zA-Z@"))
1377 (when (member cmd tex-discount-args-cmds
)
1378 (skip-chars-forward "*")
1379 (forward-comment (point-max))
1380 (when (looking-at "\\[")
1382 (forward-comment (point-max)))
1383 (if (not (looking-at "{"))
1385 (forward-sexp 1))))))
1386 (message "%s words" count
))))
1390 ;;; Invoking TeX in an inferior shell.
1392 ;; Why use a shell instead of running TeX directly? Because if TeX
1393 ;; gets stuck, the user can switch to the shell window and type at it.
1395 ;; The utility functions:
1397 (define-derived-mode tex-shell shell-mode
"TeX-Shell"
1398 (compilation-shell-minor-mode t
))
1401 (defun tex-start-shell ()
1402 (with-current-buffer
1405 (or tex-shell-file-name
(getenv "ESHELL") shell-file-name
)
1407 (let ((proc (get-process "tex-shell")))
1408 (set-process-sentinel proc
'tex-shell-sentinel
)
1409 (process-kill-without-query proc
)
1411 (while (zerop (buffer-size))
1414 (defun tex-feed-input ()
1415 "Send input to the tex shell process.
1416 In the tex buffer this can be used to continue an interactive tex run.
1417 In the tex shell buffer this command behaves like `comint-send-input'."
1419 (set-buffer (tex-shell-buf))
1421 (tex-recenter-output-buffer nil
))
1423 (defun tex-display-shell ()
1424 "Make the TeX shell buffer visible in a window."
1425 (display-buffer (tex-shell-buf))
1426 (tex-recenter-output-buffer nil
))
1428 (defun tex-shell-sentinel (proc msg
)
1429 (cond ((null (buffer-name (process-buffer proc
)))
1431 (set-process-buffer proc nil
)
1432 (tex-delete-last-temp-files))
1433 ((memq (process-status proc
) '(signal exit
))
1434 (tex-delete-last-temp-files))))
1436 (defun tex-set-buffer-directory (buffer directory
)
1437 "Set BUFFER's default directory to be DIRECTORY."
1438 (setq directory
(file-name-as-directory (expand-file-name directory
)))
1439 (if (not (file-directory-p directory
))
1440 (error "%s is not a directory" directory
)
1443 (setq default-directory directory
))))
1445 (defvar tex-send-command-modified-tick
0)
1446 (make-variable-buffer-local 'tex-send-command-modified-tick
)
1448 (defun tex-shell-proc ()
1449 (or (tex-shell-running) (error "No TeX subprocess")))
1450 (defun tex-shell-buf ()
1451 (process-buffer (tex-shell-proc)))
1452 (defun tex-shell-buf-no-error ()
1453 (let ((proc (tex-shell-running)))
1454 (and proc
(process-buffer proc
))))
1456 (defun tex-send-command (command &optional file background
)
1457 "Send COMMAND to TeX shell process, substituting optional FILE for *.
1458 Do this in background if optional BACKGROUND is t. If COMMAND has no *,
1459 FILE will be appended, preceded by a blank, to COMMAND. If FILE is nil, no
1460 substitution will be made in COMMAND. COMMAND can be any expression that
1461 evaluates to a command string.
1463 Return the process in which TeX is running."
1465 (let* ((cmd (eval command
))
1466 (proc (tex-shell-proc))
1467 (buf (process-buffer proc
))
1468 (star (string-match "\\*" cmd
))
1472 (if star
(concat (substring cmd
0 star
)
1473 file
(substring cmd
(1+ star
)))
1474 (concat cmd
" " file
))
1476 (if background
"&" ""))))
1477 ;; Switch to buffer before checking for subproc output in it.
1479 ;; If text is unchanged since previous tex-send-command,
1480 ;; we haven't got any output. So wait for output now.
1481 (if (= (buffer-modified-tick buf
) tex-send-command-modified-tick
)
1482 (accept-process-output proc
))
1483 (goto-char (process-mark proc
))
1486 (setq tex-send-command-modified-tick
(buffer-modified-tick buf
))
1489 (defun tex-delete-last-temp-files (&optional not-all
)
1490 "Delete any junk files from last temp file.
1491 If NOT-ALL is non-nil, save the `.dvi' file."
1492 (if tex-last-temp-file
1493 (let* ((dir (file-name-directory tex-last-temp-file
))
1494 (list (and (file-directory-p dir
)
1495 (file-name-all-completions
1496 (file-name-sans-extension
1497 (file-name-nondirectory tex-last-temp-file
))
1502 ;; If arg is non-nil, don't delete the .dvi file.
1503 (not (string-match "\\.dvi$" (car list
)))
1504 (delete-file (concat dir
(car list
))))
1505 (delete-file (concat dir
(car list
))))
1506 (setq list
(cdr list
))))))
1508 (add-hook 'kill-emacs-hook
'tex-delete-last-temp-files
)
1510 (defun tex-guess-main-file (&optional all
)
1511 "Find a likely `tex-main-file'.
1512 Looks for hints in other buffers in the same directory or in
1514 (let ((dir default-directory
)
1515 (header-re tex-start-of-header
))
1517 ;; Look for a buffer with `tex-main-file' set.
1518 (dolist (buf (if (consp all
) all
(buffer-list)))
1519 (with-current-buffer buf
1520 (when (and (or all
(equal dir default-directory
))
1521 (stringp tex-main-file
))
1522 (throw 'found
(expand-file-name tex-main-file
)))))
1523 ;; Look for a buffer containing the magic `tex-start-of-header'.
1524 (dolist (buf (if (consp all
) all
(buffer-list)))
1525 (with-current-buffer buf
1526 (when (and (or all
(equal dir default-directory
))
1528 ;; (or (easy-mmode-derived-mode-p 'latex-mode)
1529 ;; (easy-mmode-derived-mode-p 'plain-tex-mode))
1533 (goto-char (point-min))
1535 header-re
(+ (point) 10000) t
))))
1536 (throw 'found
(expand-file-name buffer-file-name
))))))))
1538 (defun tex-main-file ()
1539 "Return the relative name of the main file."
1540 (let* ((file (or tex-main-file
1541 ;; Compatibility with AUCTeX.
1542 (and (boundp 'TeX-master
) (stringp TeX-master
)
1543 (set (make-local-variable 'tex-main-file
) TeX-master
))
1544 ;; Try to guess the main file.
1545 (if (not buffer-file-name
)
1546 (error "Buffer is not associated with any file")
1549 (goto-char (point-min))
1550 (re-search-forward tex-start-of-header
1551 (+ (point) 10000) t
))
1552 ;; This is the main file.
1554 ;; This isn't the main file, let's try to find better,
1555 (or (tex-guess-main-file)
1556 ;; (tex-guess-main-file t)
1557 buffer-file-name
)))))))
1558 (if (file-exists-p file
) file
(concat file
".tex"))))
1561 (defun tex-start-tex (command file
&optional dir
)
1562 "Start a TeX run, using COMMAND on FILE."
1563 (let* ((star (string-match "\\*" command
))
1566 (concat (substring command
0 star
)
1567 (comint-quote-filename file
)
1568 (substring command
(1+ star
)))
1571 (if (< 0 (length tex-start-commands
))
1573 (shell-quote-argument tex-start-commands
) " "))
1574 (comint-quote-filename file
)))))
1575 (tex-send-tex-command compile-command dir
)))
1577 (defun tex-send-tex-command (cmd &optional dir
)
1578 (unless (or (equal dir
(let ((buf (tex-shell-buf-no-error)))
1579 (and buf
(with-current-buffer buf
1580 default-directory
))))
1582 (let (shell-dirtrack-verbose)
1583 (tex-send-command tex-shell-cd-command dir
)))
1584 (with-current-buffer (process-buffer (tex-send-command cmd
))
1585 (make-local-variable 'compilation-parse-errors-function
)
1586 (setq compilation-parse-errors-function
'tex-compilation-parse-errors
)
1587 (setq compilation-last-buffer
(current-buffer))
1588 (compilation-forget-errors)
1589 ;; Don't parse previous compilations.
1590 (set-marker compilation-parsing-end
(1- (point-max))))
1592 (setq tex-last-buffer-texed
(current-buffer)))
1594 (defvar tex-error-parse-syntax-table
1595 (let ((st (make-syntax-table)))
1596 (modify-syntax-entry ?\
( "()" st
)
1597 (modify-syntax-entry ?\
) ")(" st
)
1598 (modify-syntax-entry ?
\\ "\\" st
)
1599 (modify-syntax-entry ?\
{ "_" st
)
1600 (modify-syntax-entry ?\
} "_" st
)
1601 (modify-syntax-entry ?\
[ "_" st
)
1602 (modify-syntax-entry ?\
] "_" st
)
1603 ;; Single quotations may appear in errors
1604 (modify-syntax-entry ?
\" "_" st
)
1606 "Syntax-table used while parsing TeX error messages.")
1608 (defun tex-compilation-parse-errors (limit-search find-at-least
)
1609 "Parse the current buffer as TeX error messages.
1610 See the variable `compilation-parse-errors-function' for the interface it uses.
1612 This function parses only the last TeX compilation.
1613 It works on TeX compilations only. It is necessary for that purpose,
1614 since TeX does not put file names and line numbers on the same line as
1615 for the error messages."
1616 (require 'thingatpt
)
1617 (setq compilation-error-list nil
)
1618 (message "Parsing error messages...")
1619 (let ((default-directory ; Perhaps dir has changed meanwhile.
1620 (file-name-directory (buffer-file-name tex-last-buffer-texed
)))
1621 found-desired
(num-errors-found 0)
1622 last-filename last-linenum last-position
1623 begin-of-error end-of-error
)
1624 ;; Don't reparse messages already seen at last parse.
1625 (goto-char compilation-parsing-end
)
1627 (while (and (not (or found-desired
(eobp)))
1628 (prog1 (re-search-forward "^! " nil
'move
)
1629 (setq begin-of-error
(match-beginning 0)
1630 end-of-error
(match-end 0)))
1632 "^l\\.\\([0-9]+\\) \\(\\.\\.\\.\\)?\\(.*\\)$" nil
'move
))
1633 (let* ((this-error (set-marker (make-marker) begin-of-error
))
1634 (linenum (string-to-int (match-string 1)))
1635 (error-text (regexp-quote (match-string 3)))
1638 (with-syntax-table tex-error-parse-syntax-table
1639 (backward-up-list 1)
1640 (skip-syntax-forward "(_")
1641 (while (not (file-readable-p (thing-at-point 'filename
)))
1642 (skip-syntax-backward "(_")
1643 (backward-up-list 1)
1644 (skip-syntax-forward "(_"))
1645 (thing-at-point 'filename
))))
1647 (or (null last-filename
)
1648 (not (string-equal last-filename filename
))))
1651 (if (equal filename
(concat tex-zap-file
".tex"))
1652 (set-buffer tex-last-buffer-texed
)
1653 (set-buffer (find-file-noselect filename
)))
1655 (progn (goto-line linenum
) (setq last-position nil
))
1656 (goto-char last-position
)
1657 (forward-line (- linenum last-linenum
)))
1658 ;; first try a forward search for the error text,
1659 ;; then a backward search limited by the last error.
1660 (let ((starting-point (point)))
1661 (or (re-search-forward error-text nil t
)
1662 (re-search-backward error-text last-position t
)
1663 (goto-char starting-point
)))
1665 (goto-char this-error
)
1666 (if (and compilation-error-list
1667 (or (and find-at-least
1668 (>= num-errors-found
1671 (>= end-of-error limit-search
)))
1673 (setq found-desired t
)
1674 (setq num-errors-found
(1+ num-errors-found
)
1675 last-filename filename
1676 last-linenum linenum
1677 last-position error-location
1678 compilation-error-list
; Add the new error
1679 (cons (cons this-error error-location
)
1680 compilation-error-list
))
1681 (goto-char end-of-error
)))))
1682 (set-marker compilation-parsing-end
(point))
1683 (setq compilation-error-list
(nreverse compilation-error-list
))
1684 (message "Parsing error messages...done"))
1688 (defun tex-region (beg end
)
1689 "Run TeX on the current region, via a temporary file.
1690 The file's name comes from the variable `tex-zap-file' and the
1691 variable `tex-directory' says where to put it.
1693 If the buffer has a header, the header is given to TeX before the
1694 region itself. The buffer's header is all lines between the strings
1695 defined by `tex-start-of-header' and `tex-end-of-header' inclusive.
1696 The header must start in the first 100 lines of the buffer.
1698 The value of `tex-trailer' is given to TeX as input after the region.
1700 The value of `tex-command' specifies the command to use to run TeX."
1702 (if (tex-shell-running)
1706 (setq tex-zap-file
(tex-generate-zap-file-name)))
1707 ;; Temp file will be written and TeX will be run in zap-directory.
1708 ;; If the TEXINPUTS file has relative directories or if the region has
1709 ;; \input of files, this must be the same directory as the file for
1710 ;; TeX to access the correct inputs. That's why it's safest if
1711 ;; tex-directory is ".".
1712 (let* ((zap-directory
1713 (file-name-as-directory (expand-file-name tex-directory
)))
1714 (tex-out-file (expand-file-name (concat tex-zap-file
".tex")
1716 ;; Don't delete temp files if we do the same buffer twice in a row.
1717 (or (eq (current-buffer) tex-last-buffer-texed
)
1718 (tex-delete-last-temp-files t
))
1719 ;; Write the new temp file.
1723 (goto-char (point-min))
1725 (let ((search-end (point))
1726 (default-directory zap-directory
)
1728 (goto-char (point-min))
1730 ;; Maybe copy first line, such as `\input texinfo', to temp file.
1731 (and tex-first-line-header-regexp
1732 (looking-at tex-first-line-header-regexp
)
1733 (write-region (point)
1734 (progn (forward-line 1)
1735 (setq already-output
(point)))
1736 tex-out-file nil nil
))
1738 ;; Write out the header, if there is one,
1739 ;; and any of the specified region which extends before it.
1740 ;; But don't repeat anything already written.
1741 (if (re-search-forward tex-start-of-header search-end t
)
1744 (setq hbeg
(point)) ;mark beginning of header
1745 (if (re-search-forward tex-end-of-header nil t
)
1748 (setq hend
(point)) ;mark end of header
1749 (write-region (max (min hbeg beg
) already-output
)
1752 (not (zerop already-output
)) nil
)
1753 (setq already-output hend
)))))
1755 ;; Write out the specified region
1756 ;; (but don't repeat anything already written).
1757 (write-region (max beg already-output
) end
1759 (not (zerop already-output
)) nil
))
1760 ;; Write the trailer, if any.
1761 ;; Precede it with a newline to make sure it
1762 ;; is not hidden in a comment.
1764 (write-region (concat "\n" tex-trailer
) nil
1765 tex-out-file t nil
))))
1766 ;; Record the file name to be deleted afterward.
1767 (setq tex-last-temp-file tex-out-file
)
1768 ;; Use a relative file name here because (1) the proper dir
1769 ;; is already current, and (2) the abs file name is sometimes
1770 ;; too long and can make tex crash.
1771 (tex-start-tex tex-command
(concat tex-zap-file
".tex") zap-directory
)
1772 (setq tex-print-file tex-out-file
)))
1774 (defun tex-buffer ()
1775 "Run TeX on current buffer. See \\[tex-region] for more information.
1776 Does not save the buffer, so it's useful for trying experimental versions.
1777 See \\[tex-file] for an alternative."
1779 (tex-region (point-min) (point-max)))
1782 "Prompt to save all buffers and run TeX (or LaTeX) on current buffer's file.
1783 This function is more useful than \\[tex-buffer] when you need the
1784 `.aux' file of LaTeX to have the correct name."
1786 (when tex-offer-save
1787 (save-some-buffers))
1788 (let* ((source-file (tex-main-file))
1789 (file-dir (file-name-directory (expand-file-name source-file
))))
1790 (if (tex-shell-running)
1793 (tex-start-tex tex-command source-file file-dir
)
1794 (setq tex-print-file
(expand-file-name source-file
))))
1796 (defun tex-generate-zap-file-name ()
1797 "Generate a unique name suitable for use as a file name."
1798 ;; Include the shell process number and host name
1799 ;; in case there are multiple shells (for same or different user).
1800 ;; Dec 1998: There is a report that some versions of xdvi
1801 ;; don't work with file names that start with #.
1803 (process-id (get-buffer-process "*tex-shell*"))
1804 (subst-char-in-string ?. ?-
(system-name))))
1806 ;; This will perhaps be useful for modifying TEXINPUTS.
1807 ;; Expand each file name, separated by colons, in the string S.
1808 (defun tex-expand-files (s)
1809 (let (elts (start 0))
1810 (while (string-match ":" s start
)
1811 (setq elts
(cons (substring s start
(match-beginning 0)) elts
))
1812 (setq start
(match-end 0)))
1814 (setq elts
(cons (substring s start
) elts
)))
1815 (mapconcat (lambda (elt)
1816 (if (= (length elt
) 0) elt
(expand-file-name elt
)))
1817 (nreverse elts
) ":")))
1819 (defun tex-shell-running ()
1820 (let ((proc (get-process "tex-shell")))
1822 (if (and (eq (process-status proc
) 'run
)
1823 (buffer-live-p (process-buffer proc
)))
1824 ;; return the TeX process on success
1826 ;; get rid of the process permanently
1827 ;; this should get rid of the annoying w32 problem with
1828 ;; dead tex-shell buffer and live process
1829 (delete-process proc
)))))
1831 (defun tex-kill-job ()
1832 "Kill the currently running TeX job."
1834 ;; `quit-process' leads to core dumps of the tex process (except if
1835 ;; coredumpsize has limit 0kb as on many environments). One would
1836 ;; like to use (kill-process proc 'lambda), however that construct
1837 ;; does not work on some systems and kills the shell itself.
1838 (let ((proc (get-process "tex-shell")))
1839 (when proc
(quit-process proc t
))))
1841 (defun tex-recenter-output-buffer (linenum)
1842 "Redisplay buffer of TeX job output so that most recent output can be seen.
1843 The last line of the buffer is displayed on
1844 line LINE of the window, or centered if LINE is nil."
1846 (let ((tex-shell (get-buffer "*tex-shell*"))
1847 (old-buffer (current-buffer))
1849 (if (null tex-shell
)
1850 (message "No TeX output buffer")
1851 (setq window
(display-buffer tex-shell
))
1852 (save-selected-window
1853 (select-window window
)
1854 (bury-buffer tex-shell
)
1855 (goto-char (point-max))
1856 (recenter (if linenum
1857 (prefix-numeric-value linenum
)
1858 (/ (window-height) 2)))))))
1860 (defun tex-print (&optional alt
)
1861 "Print the .dvi file made by \\[tex-region], \\[tex-buffer] or \\[tex-file].
1862 Runs the shell command defined by `tex-dvi-print-command'. If prefix argument
1863 is provided, use the alternative command, `tex-alt-dvi-print-command'."
1865 (let ((print-file-name-dvi (tex-append tex-print-file
".dvi"))
1867 (if (and (not (equal (current-buffer) tex-last-buffer-texed
))
1869 ;; Check that this buffer's printed file is up to date.
1870 (file-newer-than-file-p
1871 (setq test-name
(tex-append (buffer-file-name) ".dvi"))
1872 (buffer-file-name)))
1873 (setq print-file-name-dvi test-name
))
1874 (if (not (file-exists-p print-file-name-dvi
))
1875 (error "No appropriate `.dvi' file could be found")
1876 (if (tex-shell-running)
1880 (if alt tex-alt-dvi-print-command tex-dvi-print-command
)
1881 (shell-quote-argument
1882 print-file-name-dvi
)
1885 (defun tex-alt-print ()
1886 "Print the .dvi file made by \\[tex-region], \\[tex-buffer] or \\[tex-file].
1887 Runs the shell command defined by `tex-alt-dvi-print-command'."
1892 "Preview the last `.dvi' file made by running TeX under Emacs.
1893 This means, made using \\[tex-region], \\[tex-buffer] or \\[tex-file].
1894 The variable `tex-dvi-view-command' specifies the shell command for preview.
1895 You must set that variable yourself before using this command,
1896 because there is no standard value that would generally work."
1898 (or tex-dvi-view-command
1899 (error "You must set `tex-dvi-view-command'"))
1900 (let ((tex-dvi-print-command (eval tex-dvi-view-command
)))
1903 (defun tex-append (file-name suffix
)
1904 "Append to FILENAME the suffix SUFFIX, using same algorithm TeX uses.
1905 Pascal-based TeX scans for the first period, C TeX uses the last.
1906 No period is retained immediately before SUFFIX,
1907 so normally SUFFIX starts with one."
1908 (if (stringp file-name
)
1909 (let ((file (file-name-nondirectory file-name
))
1911 ;; Try splitting on last period.
1912 ;; The first-period split can get fooled when two files
1913 ;; named a.tex and a.b.tex are both tex'd;
1914 ;; the last-period split must be right if it matches at all.
1916 (concat (file-name-directory file-name
)
1918 (string-match "\\.[^.]*$" file
))
1920 (if (or (file-exists-p trial-name
)
1921 (file-exists-p (concat trial-name
".aux"))) ;for BibTeX files
1923 ;; Not found, so split on first period.
1924 (concat (file-name-directory file-name
)
1926 (string-match "\\." file
))
1930 (defun tex-show-print-queue ()
1931 "Show the print queue that \\[tex-print] put your job on.
1932 Runs the shell command defined by `tex-show-queue-command'."
1934 (if (tex-shell-running)
1937 (tex-send-command tex-show-queue-command
)
1938 (tex-display-shell))
1940 (defun tex-bibtex-file ()
1941 "Run BibTeX on the current buffer's file."
1943 (if (tex-shell-running)
1946 (let (shell-dirtrack-verbose
1948 (tex-append (file-name-nondirectory (buffer-file-name)) ""))
1949 (file-dir (file-name-directory (buffer-file-name))))
1950 (tex-send-command tex-shell-cd-command file-dir
)
1951 (tex-send-command tex-bibtex-command tex-out-file
))
1952 (tex-display-shell))
1955 ;;;; LaTeX indentation
1958 (defvar tex-indent-allhanging t
)
1959 (defvar tex-indent-arg
4)
1960 (defvar tex-indent-basic
2)
1961 (defvar tex-indent-item tex-indent-basic
)
1962 (defvar tex-indent-item-re
"\\\\\\(bib\\)?item\\>")
1964 (easy-mmode-defsyntax tex-latex-indent-syntax-table
1968 "Syntax table used while computing indentation."
1969 :copy tex-mode-syntax-table
)
1971 (defun latex-indent (&optional arg
)
1972 (if (and (eq (get-text-property (line-beginning-position) 'face
)
1975 (with-syntax-table tex-latex-indent-syntax-table
1976 ;; TODO: Rather than ignore $, we should try to be more clever about it.
1980 (latex-find-indent))))
1981 (if (< indent
0) (setq indent
0))
1982 (if (<= (current-column) (current-indentation))
1983 (indent-line-to indent
)
1984 (save-excursion (indent-line-to indent
)))))))
1986 (defun latex-find-indent (&optional virtual
)
1987 "Find the proper indentation of text after point.
1988 VIRTUAL if non-nil indicates that we're only trying to find the indentation
1989 in order to determine the indentation of something else.
1990 There might be text before point."
1992 (skip-chars-forward " \t")
1994 ;; Stick the first line at column 0.
1995 (and (= (point-min) (line-beginning-position)) 0)
1996 ;; Trust the current indentation, if such info is applicable.
1997 (and virtual
(save-excursion (skip-chars-backward " \t&") (bolp))
1999 ;; Stick verbatim environments to the left margin.
2000 (and (looking-at "\\\\\\(begin\\|end\\) *{\\([^\n}]+\\)")
2001 (member (match-string 2) tex-verbatim-environments
)
2003 ;; Put leading close-paren where the matching open brace would be.
2004 (and (eq (latex-syntax-after) ?\
))
2007 (latex-skip-close-parens)
2008 (latex-backward-sexp-1)
2009 (latex-find-indent 'virtual
))))
2010 ;; Default (maybe an argument)
2013 ;; Outdent \item if necessary.
2014 (indent (if (looking-at tex-indent-item-re
) (- tex-indent-item
) 0))
2016 ;; Find the previous point which determines our current indentation.
2019 (latex-backward-sexp-1)
2020 (while (> (current-column) (current-indentation))
2021 (latex-backward-sexp-1)))
2023 (setq up-list-pos
(nth 2 err
))))
2025 ((= (point-min) pos
) 0) ; We're really just indenting the first line.
2026 ((integerp up-list-pos
)
2027 ;; Have to indent relative to the open-paren.
2028 (goto-char up-list-pos
)
2029 (if (and (not tex-indent-allhanging
)
2030 (> pos
(progn (latex-down-list)
2031 (forward-comment (point-max))
2033 ;; Align with the first element after the open-paren.
2035 ;; We're the first element after a hanging brace.
2036 (goto-char up-list-pos
)
2037 (+ indent tex-indent-basic
(latex-find-indent 'virtual
))))
2038 ;; We're now at the "beginning" of a line.
2039 ((not (and (not virtual
) (eq (char-after) ?
\\)))
2040 ;; Nothing particular here: just keep the same indentation.
2041 (+ indent
(current-column)))
2042 ;; We're now looking at a macro call.
2043 ((looking-at tex-indent-item-re
)
2044 ;; Indenting relative to an item, have to re-add the outdenting.
2045 (+ indent
(current-column) tex-indent-item
))
2047 (let ((col (current-column)))
2048 (if (not (eq (char-syntax char
) ?\
())
2049 ;; If the first char was not an open-paren, there's
2050 ;; a risk that this is really not an argument to the
2054 (if (< (line-end-position)
2055 (save-excursion (forward-comment (point-max))
2057 ;; we're indenting the first argument.
2058 (min (current-column) (+ tex-indent-arg col
))
2059 (skip-syntax-forward " ")
2060 (current-column))))))))))
2062 (run-hooks 'tex-mode-load-hook
)
2066 ;;; tex-mode.el ends here