annotate lisp/modes/tex-mode.el @ 48:56c54cf7c5b6 r19-16b90

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