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