annotate lisp/modes/tex-mode.el @ 4:b82b59fe008d r19-15b3

Import from CVS: tag r19-15b3
author cvs
date Mon, 13 Aug 2007 08:46:56 +0200
parents 376386a54a3c
children 0293115a14e9
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 ;;; tex-mode.el --- TeX, LaTeX, and SliTeX mode commands.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 ;; Copyright (C) 1985-1992 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 ;; Contributions over the years by William F. Schelter, Dick King,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 ;; Stephen Gildea, Michael Prange, and Edward M. Reingold.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 ;; Latest revision (1992) by Edward M. Reingold <reingold@cs.uiuc.edu>.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 ;; This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 ;; XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 ;; under the terms of the GNU General Public License as published by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ;; the Free Software Foundation; either version 2, or (at your option)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 ;; any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 ;; XEmacs is distributed in the hope that it will be useful, but
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 ;; General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 ;; You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 ;; along with XEmacs; see the file COPYING. If not, write to the Free
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 ;; Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 (require 'comint)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 (defvar tex-shell-file-name nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 "*If non-nil, is file name to use for the subshell in which TeX is run.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 (defvar tex-directory "."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 "*Directory in which temporary files are left.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 You can make this /tmp if your TEXINPUTS has no relative directories in it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 and you don't try to apply \\[tex-region] or \\[tex-buffer] when there are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 \\input commands with relative directories.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 (defvar tex-offer-save t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 "*If non-nil, ask about saving modified buffers before \\[tex-file] is run.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 (defvar tex-run-command "tex"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 "*Command used to run TeX subjob.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 If this string contains an asterisk (*), it will be replaced by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 filename; if not, the name of the file, preceded by blank, will be added to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 this string.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 (defvar latex-run-command "latex"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 "*Command used to run LaTeX subjob.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 If this string contains an asterisk (*), it will be replaced by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 filename; if not, the name of the file, preceded by blank, will be added to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 this string.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 (defvar standard-latex-block-names
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 '("abstract" "array" "center" "description"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 "displaymath" "document" "enumerate" "eqnarray"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 "eqnarray*" "equation" "figure" "figure*"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 "flushleft" "flushright" "itemize" "letter"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 "list" "minipage" "picture" "quotation"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 "quote" "slide" "sloppypar" "tabbing"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 "table" "table*" "tabular" "tabular*"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 "thebibliography" "theindex*" "titlepage" "trivlist"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 "verbatim" "verbatim*" "verse")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 "Standard LaTeX block names.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 (defvar latex-block-names nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 "*User defined LaTeX block names.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 Combined with `standard-latex-block-names' for minibuffer completion.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 (defvar slitex-run-command "slitex"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 "*Command used to run SliTeX subjob.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 If this string contains an asterisk (*), it will be replaced by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 filename; if not, the name of the file, preceded by blank, will be added to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 this string.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 (defvar tex-bibtex-command "bibtex"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 "*Command used by `tex-bibtex-file' to gather bibliographic data.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 If this string contains an asterisk (*), it will be replaced by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 filename; if not, the name of the file, preceded by blank, will be added to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 this string.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 (defvar tex-dvi-print-command "lpr -d"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 "*Command used by \\[tex-print] to print a .dvi file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 If this string contains an asterisk (*), it will be replaced by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 filename; if not, the name of the file, preceded by blank, will be added to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 this string.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 (defvar tex-alt-dvi-print-command "lpr -d"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 "*Command used by \\[tex-print] with a prefix arg to print a .dvi file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 If this string contains an asterisk (*), it will be replaced by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 filename; if not, the name of the file, preceded by blank, will be added to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 this string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 If two printers are not enough of a choice, you can define the value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 of tex-alt-dvi-print-command to be an expression that asks what you want;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 for example,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 (setq tex-alt-dvi-print-command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 '(format \"lpr -P%s\" (read-string \"Use printer: \")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 would tell \\[tex-print] with a prefix argument to ask you which printer to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 use.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 (defvar tex-dvi-view-command nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 "*Command used by \\[tex-view] to display a .dvi file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 If this string contains an asterisk (*), it will be replaced by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 filename; if not, the name of the file, preceded by blank, will be added to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 this string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 This can be set conditionally so that the previewer used is suitable for the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 window system being used. For example,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 (setq tex-dvi-view-command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 (if (eq window-system 'x) \"xdvi\" \"dvi2tty * | cat -s\"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 would tell \\[tex-view] use xdvi under X windows and to use dvi2tty
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 otherwise.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 (defvar tex-show-queue-command "lpq"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 "*Command used by \\[tex-show-print-queue] to show the print queue.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 Should show the queue(s) that \\[tex-print] puts jobs on.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 (defvar tex-default-mode 'plain-tex-mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 "*Mode to enter for a new file that might be either TeX or LaTeX.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 This variable is used when it can't be determined whether the file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 is plain TeX or LaTeX or what because the file contains no commands.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 Normally set to either 'plain-tex-mode or 'latex-mode.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 (defvar tex-open-quote "``"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 "*String inserted by typing \\[tex-insert-quote] to open a quotation.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 (defvar tex-close-quote "''"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 "*String inserted by typing \\[tex-insert-quote] to close a quotation.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 (defvar tex-last-temp-file nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 "Latest temporary file generated by \\[tex-region] and \\[tex-buffer].
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 Deleted when the \\[tex-region] or \\[tex-buffer] is next run, or when the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 tex-shell goes away.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 (defvar tex-command nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 "Command to run TeX.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 The name of the file, preceded by a blank, will be added to this string.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 (defvar tex-trailer nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 "String appended after the end of a region sent to TeX by \\[tex-region].")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 (defvar tex-start-of-header nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 "String used by \\[tex-region] to delimit the start of the file's header.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 (defvar tex-end-of-header nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 "String used by \\[tex-region] to delimit the end of the file's header.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 (defvar tex-shell-cd-command "cd"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 "Command to give to shell running TeX to change directory.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 The value of tex-directory will be appended to this, separated by a space.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 (defvar tex-zap-file nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 "Temporary file name used for text being sent as input to TeX.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 Should be a simple file name with no extension or directory specification.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 (defvar tex-last-buffer-texed nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 "Buffer which was last TeXed.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 (defvar tex-print-file nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 "File name that \\[tex-print] prints.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 Set by \\[tex-region], \\[tex-buffer], and \\[tex-file].")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 (defvar tex-mode-syntax-table nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 "Syntax table used while in TeX mode.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 (defun tex-define-common-keys (keymap)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 "Define the keys that we want defined both in TeX mode and in the tex-shell."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 (define-key keymap "\C-c\C-k" 'tex-kill-job)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 (define-key keymap "\C-c\C-l" 'tex-recenter-output-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 (define-key keymap "\C-c\C-q" 'tex-show-print-queue)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 (define-key keymap "\C-c\C-p" 'tex-print)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 (define-key keymap "\C-c\C-v" 'tex-view)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 (defvar tex-mode-map nil "Keymap for TeX mode.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 (if tex-mode-map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 (setq tex-mode-map (make-sparse-keymap))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 (tex-define-common-keys tex-mode-map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 (define-key tex-mode-map "\"" 'tex-insert-quote)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 (define-key tex-mode-map "\n" 'tex-terminate-paragraph)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 (define-key tex-mode-map "\C-c}" 'up-list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 (define-key tex-mode-map "\C-c{" 'tex-insert-braces)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 (define-key tex-mode-map "\C-c\C-r" 'tex-region)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 (define-key tex-mode-map "\C-c\C-b" 'tex-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 (define-key tex-mode-map "\C-c\C-f" 'tex-file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 (define-key tex-mode-map "\C-c\C-i" 'tex-bibtex-file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 (define-key tex-mode-map "\C-c\C-o" 'tex-latex-block)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 (define-key tex-mode-map "\C-c\C-e" 'tex-close-latex-block))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 (defvar tex-shell-map nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 "Keymap for the tex-shell. A comint-mode-map with a few additions.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 ;;; This would be a lot simpler if we just used a regexp search,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 ;;; but then it would be too slow.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 (defun tex-mode ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 "Major mode for editing files of input for TeX, LaTeX, or SliTeX.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 Tries to determine (by looking at the beginning of the file) whether
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 this file is for plain TeX, LaTeX, or SliTeX and calls plain-tex-mode,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 latex-mode, or slitex-mode, respectively. If it cannot be determined,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 such as if there are no commands in the file, the value of tex-default-mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 is used."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 (let (mode slash comment)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 (while (and (setq slash (search-forward "\\" nil t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 (setq comment (let ((search-end (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 (search-forward "%" search-end t))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 (if (and slash (not comment))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 (setq mode (if (looking-at "documentstyle")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 (if (looking-at "documentstyle{slides}")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 'slitex-mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 'latex-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 'plain-tex-mode))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 (if mode (funcall mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 (funcall tex-default-mode))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 (fset 'TeX-mode 'tex-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 (fset 'LaTeX-mode 'latex-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 (defun plain-tex-mode ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 "Major mode for editing files of input for plain TeX.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 Makes $ and } display the characters they match.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 Makes \" insert `` when it seems to be the beginning of a quotation,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 and '' when it appears to be the end; it inserts \" only after a \\.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 Use \\[tex-region] to run TeX on the current region, plus a \"header\"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 copied from the top of the file (containing macro definitions, etc.),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 running TeX under a special subshell. \\[tex-buffer] does the whole buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 \\[tex-file] saves the buffer and then processes the file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 \\[tex-print] prints the .dvi file made by any of these.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 \\[tex-view] previews the .dvi file made by any of these.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 \\[tex-bibtex-file] runs bibtex on the file of the current buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 Use \\[validate-tex-buffer] to check buffer for paragraphs containing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 mismatched $'s or braces.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 Special commands:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 \\{tex-mode-map}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 Mode variables:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 tex-run-command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 Command string used by \\[tex-region] or \\[tex-buffer].
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 tex-directory
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 Directory in which to create temporary files for TeX jobs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 run by \\[tex-region] or \\[tex-buffer].
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 tex-dvi-print-command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 Command string used by \\[tex-print] to print a .dvi file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 tex-alt-dvi-print-command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 Alternative command string used by \\[tex-print] (when given a prefix
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 argument) to print a .dvi file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 tex-dvi-view-command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 Command string used by \\[tex-view] to preview a .dvi file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 tex-show-queue-command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 Command string used by \\[tex-show-print-queue] to show the print
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 queue that \\[tex-print] put your job on.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 Entering Plain-tex mode calls the value of text-mode-hook, then the value of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 tex-mode-hook, and then the value of plain-tex-mode-hook. When the special
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 subshell is initiated, the value of tex-shell-hook is called."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 (tex-common-initialization)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 (setq mode-name "TeX")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 (setq major-mode 'plain-tex-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 (setq tex-command tex-run-command)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 (setq tex-start-of-header "%**start of header")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 (setq tex-end-of-header "%**end of header")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 (setq tex-trailer "\\bye\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 (run-hooks 'text-mode-hook 'tex-mode-hook 'plain-tex-mode-hook))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 (fset 'plain-TeX-mode 'plain-tex-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 (defun latex-mode ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 "Major mode for editing files of input for LaTeX.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 Makes $ and } display the characters they match.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 Makes \" insert `` when it seems to be the beginning of a quotation,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 and '' when it appears to be the end; it inserts \" only after a \\.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 Use \\[tex-region] to run LaTeX on the current region, plus the preamble
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 copied from the top of the file (containing \\documentstyle, etc.),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 running LaTeX under a special subshell. \\[tex-buffer] does the whole buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 \\[tex-file] saves the buffer and then processes the file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 \\[tex-print] prints the .dvi file made by any of these.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 \\[tex-view] previews the .dvi file made by any of these.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 \\[tex-bibtex-file] runs bibtex on the file of the current buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 Use \\[validate-tex-buffer] to check buffer for paragraphs containing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 mismatched $'s or braces.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 Special commands:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 \\{tex-mode-map}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 Mode variables:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 latex-run-command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 Command string used by \\[tex-region] or \\[tex-buffer].
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 tex-directory
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 Directory in which to create temporary files for LaTeX jobs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 run by \\[tex-region] or \\[tex-buffer].
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 tex-dvi-print-command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 Command string used by \\[tex-print] to print a .dvi file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 tex-alt-dvi-print-command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 Alternative command string used by \\[tex-print] (when given a prefix
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 argument) to print a .dvi file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 tex-dvi-view-command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 Command string used by \\[tex-view] to preview a .dvi file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 tex-show-queue-command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 Command string used by \\[tex-show-print-queue] to show the print
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 queue that \\[tex-print] put your job on.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 Entering Latex mode calls the value of text-mode-hook, then the value of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 tex-mode-hook, and then the value of latex-mode-hook. When the special
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 subshell is initiated, the value of tex-shell-hook is called."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 (tex-common-initialization)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 (setq mode-name "LaTeX")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 (setq major-mode 'latex-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 (setq tex-command latex-run-command)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 (setq tex-start-of-header "\\documentstyle")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 (setq tex-end-of-header "\\begin{document}")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 (setq tex-trailer "\\end{document}\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 (run-hooks 'text-mode-hook 'tex-mode-hook 'latex-mode-hook))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 (defun slitex-mode ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 "Major mode for editing files of input for SliTeX.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 Makes $ and } display the characters they match.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 Makes \" insert `` when it seems to be the beginning of a quotation,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 and '' when it appears to be the end; it inserts \" only after a \\.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 Use \\[tex-region] to run SliTeX on the current region, plus the preamble
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 copied from the top of the file (containing \\documentstyle, etc.),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 running SliTeX under a special subshell. \\[tex-buffer] does the whole buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 \\[tex-file] saves the buffer and then processes the file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 \\[tex-print] prints the .dvi file made by any of these.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 \\[tex-view] previews the .dvi file made by any of these.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 \\[tex-bibtex-file] runs bibtex on the file of the current buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 Use \\[validate-tex-buffer] to check buffer for paragraphs containing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 mismatched $'s or braces.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 Special commands:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 \\{tex-mode-map}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 Mode variables:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 slitex-run-command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 Command string used by \\[tex-region] or \\[tex-buffer].
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 tex-directory
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 Directory in which to create temporary files for SliTeX jobs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 run by \\[tex-region] or \\[tex-buffer].
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 tex-dvi-print-command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 Command string used by \\[tex-print] to print a .dvi file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 tex-alt-dvi-print-command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 Alternative command string used by \\[tex-print] (when given a prefix
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 argument) to print a .dvi file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 tex-dvi-view-command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 Command string used by \\[tex-view] to preview a .dvi file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 tex-show-queue-command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 Command string used by \\[tex-show-print-queue] to show the print
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 queue that \\[tex-print] put your job on.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 Entering SliTeX mode calls the value of text-mode-hook, then the value of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 tex-mode-hook, then the value of latex-mode-hook, and then the value of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 slitex-mode-hook. When the special subshell is initiated, the value of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 tex-shell-hook is called."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 (tex-common-initialization)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 (setq mode-name "SliTeX")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 (setq major-mode 'slitex-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 (setq tex-command slitex-run-command)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 (setq tex-start-of-header "\\documentstyle{slides}")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 (setq tex-end-of-header "\\begin{document}")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 (setq tex-trailer "\\end{document}\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 (run-hooks
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 'text-mode-hook 'tex-mode-hook 'latex-mode-hook 'slitex-mode-hook))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 (defun tex-common-initialization ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 (kill-all-local-variables)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 (use-local-map tex-mode-map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 (setq local-abbrev-table text-mode-abbrev-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 (if (null tex-mode-syntax-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 (let ((char 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 (setq tex-mode-syntax-table (make-syntax-table))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 (set-syntax-table tex-mode-syntax-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 (while (< char ? )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 (modify-syntax-entry char ".")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 (setq char (1+ char)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 (modify-syntax-entry ?\C-@ "w")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 (modify-syntax-entry ?\t " ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 (modify-syntax-entry ?\n ">")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 (modify-syntax-entry ?\f ">")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 (modify-syntax-entry ?$ "$$")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 (modify-syntax-entry ?% "<")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 (modify-syntax-entry ?\\ "/")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 (modify-syntax-entry ?\" ".")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 (modify-syntax-entry ?& ".")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 (modify-syntax-entry ?_ ".")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 (modify-syntax-entry ?@ "_")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 (modify-syntax-entry ?~ " ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 (modify-syntax-entry ?' "w"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 (set-syntax-table tex-mode-syntax-table))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 (make-local-variable 'paragraph-start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411 (setq paragraph-start "^[ \t]*$\\|^[\f\\\\%]")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 (make-local-variable 'paragraph-separate)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 (setq paragraph-separate paragraph-start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 (make-local-variable 'comment-start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 (setq comment-start "%")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 (make-local-variable 'comment-start-skip)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 (setq comment-start-skip "\\(\\(^\\|[^\\]\\)\\(\\\\\\\\\\)*\\)\\(%+ *\\)")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 (make-local-variable 'comment-indent-function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 (setq comment-indent-function 'tex-comment-indent)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 (make-local-variable 'compare-windows-whitespace)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 (setq compare-windows-whitespace 'tex-categorize-whitespace)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 (make-local-variable 'tex-command)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 (make-local-variable 'tex-start-of-header)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 (make-local-variable 'tex-end-of-header)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 (make-local-variable 'tex-trailer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 (defun tex-comment-indent ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 (if (looking-at "%%%")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 (current-column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 (skip-chars-backward " \t")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 (max (if (bolp) 0 (1+ (current-column)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 comment-column)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434 (defun tex-categorize-whitespace (backward-limit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 ;; compare-windows-whitespace is set to this.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 ;; This is basically a finite-state machine.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 ;; Returns a symbol telling how TeX would treat
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 ;; the whitespace we are looking at: null, space, or par.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 (let ((category 'null)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 (not-finished t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 (skip-chars-backward " \t\n\f" backward-limit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 (while not-finished
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 (cond ((looking-at "[ \t]+")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 (goto-char (match-end 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 (if (eql category 'null)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 (setq category 'space)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 ((looking-at "\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 (cond ((eql category 'newline)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 (setq category 'par)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 (setq not-finished nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 (setq category 'newline) ;a strictly internal state
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 (goto-char (match-end 0)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 ((looking-at "\f+")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 (setq category 'par)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 (setq not-finished nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 (setq not-finished nil))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 (skip-chars-forward " \t\n\f")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 (if (eql category 'newline)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 'space ;TeX doesn't distinguish
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 category)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464 (defun tex-insert-quote (arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 "Insert the appropriate quote marks for TeX.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 Inserts the value of tex-open-quote (normally ``) or tex-close-quote
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 (normally '') depending on the context. With prefix argument, always
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 inserts \" characters."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469 (interactive "*P")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 (if arg
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471 (self-insert-command (prefix-numeric-value arg))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472 (insert
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 (cond ((or (bobp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475 (forward-char -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 (looking-at "\\s(\\|\\s \\|\\s>")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 tex-open-quote)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 ((= (preceding-char) ?\\)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 ?\")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 tex-close-quote)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 (defun validate-tex-buffer ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 "Check current buffer for paragraphs containing mismatched $'s.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 As each such paragraph is found, a mark is pushed at its beginning,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 and the location is displayed for a few seconds."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 (let ((opoint (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 (goto-char (point-max))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490 ;; Does not use save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 ;; because we do not want to save the mark.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 (unwind-protect
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 (while (and (not (input-pending-p)) (not (bobp)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 (let ((end (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 (search-backward "\n\n" nil 'move)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 (or (tex-validate-region (point) end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 (push-mark (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 (message "Mismatch found in pararaph starting here")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 (sit-for 4)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501 (goto-char opoint))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 (defun tex-validate-region (start end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 "Check for mismatched braces or $'s in region.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 Returns t if no mismatches. Returns nil and moves point to suspect
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506 area if a mismatch is found."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507 (interactive "r")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 (let ((failure-point nil) (max-possible-sexps (- end start)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 (condition-case ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511 (save-restriction
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512 (narrow-to-region start end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513 (goto-char start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 (while (< 0 (setq max-possible-sexps (1- max-possible-sexps)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 (forward-sexp 1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 (error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 (setq failure-point (point)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 (if failure-point
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 (goto-char failure-point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 (defun tex-terminate-paragraph (inhibit-validation)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 "Insert two newlines, breaking a paragraph for TeX.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 Check for mismatched braces/$'s in paragraph being terminated.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 A prefix arg inhibits the checking."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 (interactive "*P")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 (or inhibit-validation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 (tex-validate-region
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 (search-backward "\n\n" nil 'move)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 (message "Paragraph being closed appears to contain a mismatch"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 (insert "\n\n"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 (defun tex-insert-braces ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 "Make a pair of braces and be poised to type inside of them."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541 (interactive "*")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542 (insert ?\{)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 (insert ?})))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546 ;;; Like tex-insert-braces, but for LaTeX.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547 (defun tex-latex-block (name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 "Creates a matching pair of lines \\begin{NAME} and \\end{NAME} at point.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549 Puts point on a blank line between them."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550 (interactive
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 (prog2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552 (barf-if-buffer-read-only)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 (list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 (completing-read "LaTeX block name: "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555 (mapcar 'list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556 (append standard-latex-block-names
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557 latex-block-names))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 (let ((col (current-column)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 (insert (format "\\begin{%s}\n" name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560 (indent-to col)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 (insert ?\n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563 (indent-to col)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 (insert (format "\\end{%s}" name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565 (if (eobp) (insert ?\n)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 (defun tex-last-unended-begin ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 "Leave point at the beginning of the last \\begin{...} that is unended."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569 (while (and (re-search-backward "\\(\\\\begin\\s *{\\)\\|\\(\\\\end\\s *{\\)")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570 (looking-at "\\\\end{"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571 (tex-last-unended-begin)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573 (defun tex-close-latex-block ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 "Creates an \\end{...} to match the last unclosed \\begin{...}."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 (interactive "*")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 (let ((new-line-needed (bolp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 text indentation)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579 (condition-case nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580 (tex-last-unended-begin)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581 (error (error "Couldn't find unended \\begin")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 (setq indentation (current-column))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 (re-search-forward "\\\\begin\\(\\s *{[^}\n]*}\\)")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 (setq text (buffer-substring (match-beginning 1) (match-end 1))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585 (indent-to indentation)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586 (insert "\\end" text)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587 (if new-line-needed (insert ?\n))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589 ;;; Invoking TeX in an inferior shell.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591 ;;; Why use a shell instead of running TeX directly? Because if TeX
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 ;;; gets stuck, the user can switch to the shell window and type at it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594 ;;; The utility functions:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596 (defun tex-start-shell ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598 (set-buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599 (make-comint
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600 "tex-shell"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601 (or tex-shell-file-name (getenv "ESHELL") (getenv "SHELL") "/bin/sh")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602 nil "-v"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603 (let ((proc (get-process "tex-shell")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604 (set-process-sentinel proc 'tex-shell-sentinel)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605 (process-kill-without-query proc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606 (setq tex-shell-map (copy-keymap comint-mode-map))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607 (tex-define-common-keys tex-shell-map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608 (use-local-map tex-shell-map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609 (run-hooks 'tex-shell-hook)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 (while (zerop (buffer-size))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611 (sleep-for 1)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613 (defun tex-shell-sentinel (proc msg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614 (cond ((null (buffer-name (process-buffer proc)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615 ;; buffer killed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616 (set-process-buffer proc nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 (tex-delete-last-temp-files))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618 ((memq (process-status proc) '(signal exit))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 (tex-delete-last-temp-files))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621 (defun tex-set-buffer-directory (buffer directory)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622 "Set BUFFER's default directory to be DIRECTORY."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623 (setq directory (file-name-as-directory (expand-file-name directory)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624 (if (not (file-directory-p directory))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625 (error "%s is not a directory" directory)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627 (set-buffer buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 (setq default-directory directory))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630 (defun tex-send-command (command &optional file background)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631 "Send COMMAND to tex-shell, substituting optional FILE for *; in background
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632 if optional BACKGROUND is t. If COMMAND has no *, FILE will be appended,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 preceded by a blank, to COMMAND. If FILE is nil, no substitution will be made
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634 in COMMAND. COMMAND can be any expression that evaluates to a command string."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636 (let* ((cmd (eval command))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 (star (string-match "\\*" cmd)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 (comint-proc-query (get-process "tex-shell")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639 (concat (substring cmd 0 star)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640 (if file (concat " " file) "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641 (if star (substring cmd (1+ star) nil) "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642 (if background "&\n" "\n"))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644 (defun tex-delete-last-temp-files ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645 "Delete any junk files from last temp file."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646 (if tex-last-temp-file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647 (let* ((dir (file-name-directory tex-last-temp-file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648 (list (file-name-all-completions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649 (file-name-nondirectory tex-last-temp-file) dir)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650 (while list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651 (delete-file (concat dir (car list)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652 (setq list (cdr list))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
653
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654 (add-hook 'kill-emacs-hook 'tex-delete-last-temp-files)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656 ;;; The commands:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658 (defun tex-region (beg end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 "Run TeX on the current region, via a temporary file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 The file's name comes from the variable `tex-zap-file' and the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661 variable `tex-directory' says where to put it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663 If the buffer has a header, the header is given to TeX before the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 region itself. The buffer's header is all lines between the strings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 defined by `tex-start-of-header' and `tex-end-of-header' inclusive.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 The header must start in the first 100 lines of the buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 The value of `tex-trailer' is given to TeX as input after the region.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 The value of `tex-command' specifies the command to use to run TeX."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 (interactive "r")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 (if (tex-shell-running)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 (tex-kill-job)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 (tex-start-shell))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675 (or tex-zap-file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676 (setq tex-zap-file (tex-generate-zap-file-name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677 (let* ((temp-buffer (get-buffer-create " TeX-Output-Buffer"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 ; Temp file will be written and TeX will be run in zap-directory.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679 ; If the TEXINPUTS file has relative directories or if the region has
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680 ; \input of files, this must be the same directory as the file for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681 ; TeX to access the correct inputs. That's why it's safest if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682 ; tex-directory is ".".
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683 (zap-directory
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684 (file-name-as-directory (expand-file-name tex-directory)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685 (tex-out-file (concat zap-directory tex-zap-file)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686 (tex-delete-last-temp-files)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687 ;; Write the new temp file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689 (save-restriction
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 (widen)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692 (forward-line 100)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693 (let ((search-end (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694 (hbeg (point-min)) (hend (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695 (default-directory zap-directory))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697 ;; Initialize the temp file with either the header or nothing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698 (if (search-forward tex-start-of-header search-end t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700 (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 (setq hbeg (point)) ;mark beginning of header
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702 (if (search-forward tex-end-of-header nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703 (progn (forward-line 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704 (setq hend (point))) ;mark end of header
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705 (setq hbeg (point-min))))) ;no header
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706 (write-region (min hbeg beg) hend
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707 (concat tex-out-file ".tex") nil nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708 (write-region (max beg hend) end (concat tex-out-file ".tex") t nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 (let ((local-tex-trailer tex-trailer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710 (set-buffer temp-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711 (erase-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712 ;; make sure trailer isn't hidden by a comment
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713 (insert ?\n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714 (if local-tex-trailer (insert local-tex-trailer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715 (tex-set-buffer-directory temp-buffer zap-directory)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716 (write-region (point-min) (point-max)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717 (concat tex-out-file ".tex") t nil))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718 ;; Record the file name to be deleted afterward.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 (setq tex-last-temp-file tex-out-file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720 (tex-send-command tex-shell-cd-command zap-directory)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 (tex-send-command tex-command tex-out-file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722 (setq tex-print-file tex-out-file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723 (setq tex-last-buffer-texed (current-buffer))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725 (defun tex-buffer ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726 "Run TeX on current buffer. See \\[tex-region] for more information.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727 Does not save the buffer, so it's useful for trying experimental versions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 See \\[tex-file] for an alternative."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730 (tex-region (point-min) (point-max)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732 (defun tex-file ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733 "Prompt to save all buffers and run TeX (or LaTeX) on current buffer's file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734 This function is more useful than \\[tex-buffer] when you need the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735 `.aux' file of LaTeX to have the correct name."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737 (let ((tex-out-file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738 (if (buffer-file-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739 (file-name-nondirectory (buffer-file-name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740 (error "Buffer does not seem to be associated with any file")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741 (file-dir (file-name-directory (buffer-file-name))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742 (save-some-buffers)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743 (if (tex-shell-running)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 (tex-kill-job)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745 (tex-start-shell))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746 (tex-send-command tex-shell-cd-command file-dir)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747 (tex-send-command tex-command tex-out-file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748 (setq tex-last-buffer-texed (current-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749 (setq tex-print-file (buffer-file-name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751 (defun tex-generate-zap-file-name ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
752 "Generate a unique name suitable for use as a file name."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753 ;; Include the shell process number and host name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754 ;; in case there are multiple shells (for same or different user).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
755 (format "#tz%d%s"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
756 (process-id (get-buffer-process "*tex-shell*"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757 (tex-strip-dots (system-name))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
758
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759 (defun tex-strip-dots (s)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760 (setq s (copy-sequence s))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761 (while (string-match "\\." s)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762 (aset s (match-beginning 0) ?-))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763 s)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765 ;; This will perhaps be useful for modifying TEXINPUTS.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766 ;; Expand each file name, separated by colons, in the string S.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767 (defun tex-expand-files (s)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768 (let (elts (start 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769 (while (string-match ":" s start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770 (setq elts (cons (substring s start (match-beginning 0)) elts))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 (setq start (match-end 0)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772 (or (= start 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773 (setq elts (cons (substring s start) elts)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774 (mapconcat 'expand-file-name (nreverse elts) ":")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
775
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776 (defun tex-shell-running ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777 (and (get-process "tex-shell")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
778 (eq (process-status (get-process "tex-shell")) 'run)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
779
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780 (defun tex-kill-job ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
781 "Kill the currently running TeX job."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783 (quit-process (get-process "tex-shell") t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785 (defun tex-recenter-output-buffer (linenum)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786 "Redisplay buffer of TeX job output so that most recent output can be seen.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
787 The last line of the buffer is displayed on
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788 line LINE of the window, or centered if LINE is nil."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789 (interactive "P")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790 (let ((tex-shell (get-buffer "*tex-shell*"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
791 (old-buffer (current-buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
792 (if (null tex-shell)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793 (message "No TeX output buffer")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794 (pop-to-buffer tex-shell)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795 (bury-buffer tex-shell)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
796 (goto-char (point-max))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
797 (recenter (if linenum
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
798 (prefix-numeric-value linenum)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799 (/ (window-height) 2)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
800 (pop-to-buffer old-buffer))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
801
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
802 (defun tex-print (&optional alt)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
803 "Print the .dvi file made by \\[tex-region], \\[tex-buffer] or \\[tex-file].
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
804 Runs the shell command defined by tex-dvi-print-command. If prefix argument
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
805 is provided, use the alternative command, tex-alt-dvi-print-command."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
806 (interactive "P")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
807 (let ((print-file-name-dvi (tex-append tex-print-file ".dvi"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808 test-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
809 (if (and (not (equal (current-buffer) tex-last-buffer-texed))
4
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 0
diff changeset
810 (buffer-file-name)
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 0
diff changeset
811 ;; Check that this buffer's printed file is up to date.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812 (file-newer-than-file-p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
813 (setq test-name (tex-append (buffer-file-name) ".dvi"))
4
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 0
diff changeset
814 (buffer-file-name)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
815 (setq print-file-name-dvi test-name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
816 (if (not (file-exists-p print-file-name-dvi))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
817 (error "No appropriate `.dvi' file could be found")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
818 (tex-send-command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
819 (if alt tex-alt-dvi-print-command tex-dvi-print-command)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
820 print-file-name-dvi t))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
821
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
822 (defun tex-view ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
823 "Preview the last `.dvi' file made by running TeX under Emacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
824 This means, made using \\[tex-region], \\[tex-buffer] or \\[tex-file].
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
825 The variable `tex-dvi-view-command' specifies the shell command for preview."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827 (let ((tex-dvi-print-command tex-dvi-view-command))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828 (tex-print)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
829
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830 (defun tex-append (file-name suffix)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
831 "Append to FILENAME the suffix SUFFIX, using same algorithm TeX uses.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832 Scans for the first (not last) period.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833 No period is retained immediately before SUFFIX,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834 so normally SUFFIX starts with one."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835 (if (stringp file-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
836 (let ((file (file-name-nondirectory file-name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837 (concat (file-name-directory file-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
838 (substring file 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
839 (string-match "\\." file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
840 suffix))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
841 " "))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
842
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
843 (defun tex-show-print-queue ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
844 "Show the print queue that \\[tex-print] put your job on.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
845 Runs the shell command defined by tex-show-queue-command."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
846 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847 (if (tex-shell-running)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848 (tex-kill-job)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849 (tex-start-shell))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
850 (tex-send-command tex-show-queue-command))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
851
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
852 (defun tex-bibtex-file ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853 "Run BibTeX on the current buffer's file."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855 (if (tex-shell-running)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 (tex-kill-job)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857 (tex-start-shell))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
858 (let ((tex-out-file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
859 (tex-append (file-name-nondirectory (buffer-file-name)) ""))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
860 (file-dir (file-name-directory (buffer-file-name))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
861 (tex-send-command tex-shell-cd-command file-dir)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
862 (tex-send-command bibtex-command tex-out-file)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
863
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864 (run-hooks 'tex-mode-load-hook)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
866 (provide 'tex-mode)