author | paulson |
Tue, 29 Feb 2000 10:57:30 +0100 | |
changeset 8314 | 463f63a9a7f2 |
parent 7980 | fce25292e1b8 |
child 8363 | 242dab4f164a |
permissions | -rw-r--r-- |
4540 | 1 |
|
3753 | 2 |
%% $Id$ |
3188 | 3 |
|
4 |
\chapter{Presenting theories} |
|
5 |
||
7849 | 6 |
Isabelle provides several ways to present the outcome of formal developments, |
7 |
including WWW-based browsable libraries or actual printable documents. |
|
8 |
Presentation is centered around the concept of \emph{logic sessions}. The |
|
7882 | 9 |
global session structure is that of a tree, with Isabelle \texttt{Pure} at its |
10 |
root, further object-logics derived (e.g.\ \texttt{HOLCF} from \texttt{HOL}, |
|
11 |
and \texttt{HOL} from \texttt{Pure}), and application sessions in leave |
|
12 |
positions. The latter usually do not have a separate {\ML} image. |
|
7849 | 13 |
|
14 |
The \texttt{usedir} utility (see \S\ref{sec:tool-usedir}) provides the prime |
|
15 |
means for managing Isabelle sessions, including proper setup for presentation. |
|
16 |
||
17 |
||
3753 | 18 |
\section{Generating theory browsing information} \label{sec:info} |
4540 | 19 |
\index{theory browsing information|bold} |
3188 | 20 |
|
7849 | 21 |
As a side-effect of running a logic sessions, Isabelle is able to generate |
22 |
theory browsing information, including HTML documents that show a theory's |
|
23 |
definition, the theorems proved in its ML file and the relationship with its |
|
24 |
ancestors and descendants. Besides the HTML file that is generated for every |
|
25 |
theory, Isabelle stores links to all theories in an index file. These indexes |
|
7882 | 26 |
are linked with other indexes to represent the overall tree structure of logic |
27 |
sessions. |
|
3188 | 28 |
|
7258 | 29 |
Isabelle also generates graph files that represent the theory hierarchy of a |
30 |
logic. There is a graph browser Java applet embedded in the generated HTML |
|
31 |
pages, and also a stand-alone application that allows browsing theory graphs |
|
32 |
without having to start a WWW browser first. The latter version also includes |
|
33 |
features such as generating {\sc PostScript} files, which are not available in |
|
34 |
the applet version. See \S\ref{sec:browse} for further information. |
|
3753 | 35 |
|
7258 | 36 |
\medskip |
37 |
||
7882 | 38 |
In order to let Isabelle generate theory browsing information, simply append |
39 |
``\texttt{-i true}'' to the \settdx{ISABELLE_USEDIR_OPTIONS} setting before |
|
40 |
making a logic. For example, in order to do this for {\FOL}, add this to your |
|
7849 | 41 |
Isabelle settings file |
3188 | 42 |
\begin{ttbox} |
3753 | 43 |
ISABELLE_USEDIR_OPTIONS="-i true" |
3188 | 44 |
\end{ttbox} |
7258 | 45 |
and then change into the \texttt{src/FOL} directory of the Isabelle |
46 |
distribution and run \texttt{isatool make}, or even \texttt{isatool make all}. |
|
47 |
||
7849 | 48 |
Some sessions (such as \texttt{HOL/Isar_examples}) even provide actual |
7882 | 49 |
printable documents. These are prepared automatically as well if enabled like |
50 |
this, using the \texttt{-d} option |
|
7849 | 51 |
\begin{ttbox} |
52 |
ISABELLE_USEDIR_OPTIONS="-i true -d dvi" |
|
53 |
\end{ttbox} |
|
54 |
See \S\ref{sec:tool-document} for further information on Isabelle document |
|
55 |
preparation. |
|
3753 | 56 |
|
7849 | 57 |
\bigskip The theory browsing information is stored within the directory |
58 |
determined by the \settdx{ISABELLE_BROWSER_INFO} setting. The |
|
59 |
\texttt{index.html} file located there provides an entry point to all standard |
|
60 |
Isabelle logics. A complete HTML version of all object-logics and examples of |
|
61 |
the Isabelle distribution is available at |
|
6623 | 62 |
\begin{center}\small |
63 |
\begin{tabular}{l} |
|
64 |
\url{http://www.cl.cam.ac.uk/Research/HVG/Isabelle/library/} \\ |
|
65 |
\url{http://isabelle.in.tum.de/library/} \\ |
|
66 |
\end{tabular} |
|
67 |
\end{center} |
|
68 |
||
7258 | 69 |
\medskip |
3188 | 70 |
|
7258 | 71 |
The generated HTML document of any theory includes all theorems proved in the |
72 |
corresponding {\ML} file, provided these have been stored properly via |
|
7849 | 73 |
\ttindex{qed}, \ttindex{qed_goal}, \ttindex{qed_goalw}, \ttindex{bind_thm}, |
7882 | 74 |
\ttindex{bind_thms} or \ttindex{store_thm} (see also \cite{isabelle-ref}). |
75 |
Section headings may be included in the presentation via the {\ML} function |
|
7258 | 76 |
\begin{ttbox}\index{*section} |
3188 | 77 |
section: string -> unit |
78 |
\end{ttbox} |
|
79 |
||
7258 | 80 |
\medskip |
3188 | 81 |
|
7258 | 82 |
In order to present your own theories on the web, simply copy the whole |
83 |
\texttt{ISABELLE_BROWSER_INFO} directory to your WWW server, after generating |
|
84 |
browser info like this: |
|
7251
35de2117b5dd
Modified section about generation of theory browsing information.
berghofe
parents:
6623
diff
changeset
|
85 |
\begin{ttbox} |
7861 | 86 |
isatool usedir -i true HOL Foo |
7251
35de2117b5dd
Modified section about generation of theory browsing information.
berghofe
parents:
6623
diff
changeset
|
87 |
\end{ttbox} |
7861 | 88 |
This assumes that directory \texttt{Foo} contains some \texttt{ROOT.ML} file |
89 |
to load all your theories, and {\HOL} is your parent logic image. Ideally, |
|
90 |
theory browser information would have been generated for {\HOL} already. |
|
7258 | 91 |
|
92 |
Alternatively, one may specify an external link to an existing body of HTML |
|
93 |
data by giving \texttt{usedir} a \texttt{-P} option like this: |
|
94 |
\begin{ttbox} |
|
7861 | 95 |
isatool usedir -i true -P http://isabelle.in.tum.de/library/ HOL Foo |
7258 | 96 |
\end{ttbox} |
97 |
||
3753 | 98 |
|
7849 | 99 |
|
3753 | 100 |
\section{Browsing theory graphs} \label{sec:browse} |
101 |
\index{theory graph browser|bold} |
|
102 |
||
7882 | 103 |
The graph browser is a tool for visualizing dependency graphs. Certain nodes |
104 |
of the graph (i.e.~theories) can be grouped together in ``directories'', whose |
|
105 |
contents may be hidden, thus enabling the user to filter out irrelevant |
|
106 |
information. The browser is written in Java, it can be used both as a |
|
107 |
stand-alone application and as an applet. |
|
4540 | 108 |
|
3188 | 109 |
|
3753 | 110 |
\subsection{Invoking the graph browser} |
4540 | 111 |
|
112 |
The stand-alone version of the graph browser is wrapped up as an |
|
113 |
Isabelle tool called \tooldx{browser}: |
|
3753 | 114 |
\begin{ttbox} |
4540 | 115 |
Usage: browser [GRAPHFILE] |
3753 | 116 |
\end{ttbox} |
4540 | 117 |
When no filename is specified, the browser automatically changes to |
118 |
the directory \texttt{ISABELLE_BROWSER_INFO/graph/data}. |
|
3753 | 119 |
|
7849 | 120 |
\medskip The applet version of the browser can be invoked by opening the {\tt |
121 |
index.html} file in the directory \texttt{ISABELLE_BROWSER_INFO} from your |
|
7882 | 122 |
Web browser and selecting the version ``including theory graph browser''. |
123 |
There is also a link to the corresponding theory graph in every logic's {\tt |
|
7849 | 124 |
index.html} file. |
4540 | 125 |
|
3188 | 126 |
|
3753 | 127 |
\subsection{Using the graph browser} |
4540 | 128 |
|
129 |
The browser's main window, which is shown in figure |
|
7849 | 130 |
\ref{browserwindow}, consists of two sub-windows: In the left |
131 |
sub-window, the directory tree is displayed. The graph itself is |
|
132 |
displayed in the right sub-window. |
|
133 |
\begin{figure}[ht] |
|
6623 | 134 |
\includegraphics[width=\textwidth]{browser_screenshot} |
4540 | 135 |
\caption{\label{browserwindow} Browser main window} |
3753 | 136 |
\end{figure} |
137 |
||
4540 | 138 |
|
3753 | 139 |
\subsubsection*{The directory tree window} |
4540 | 140 |
|
7882 | 141 |
We describe the usage of the directory browser and the meaning of the |
142 |
different items in the browser window. |
|
3753 | 143 |
\begin{itemize} |
4540 | 144 |
|
145 |
\item A red arrow before a directory name indicates that the directory |
|
146 |
is currently ``folded'', i.e.~the nodes in this directory are |
|
7849 | 147 |
collapsed to one single node. In the right sub-window, the names of |
4540 | 148 |
nodes corresponding to folded directories are enclosed in square |
7849 | 149 |
brackets and displayed in red color. |
4540 | 150 |
|
151 |
\item A green downward arrow before a directory name indicates that |
|
152 |
the directory is currently ``unfolded''. It can be folded by |
|
153 |
clicking on the directory name. Clicking on the name for a second |
|
154 |
time unfolds the directory again. Alternatively, a directory can |
|
155 |
also be unfolded by clicking on the corresponding node in the right |
|
7849 | 156 |
sub-window. |
4540 | 157 |
|
7882 | 158 |
\item Blue arrows stand before ordinary node names. When clicking on such a |
159 |
name (i.e.\ that of a theory), the graph display window focuses to the |
|
160 |
corresponding node. Double clicking invokes a text viewer window in which |
|
161 |
the contents of the theory file are displayed. |
|
4540 | 162 |
|
3753 | 163 |
\end{itemize} |
3188 | 164 |
|
4540 | 165 |
|
3753 | 166 |
\subsubsection*{The graph display window} |
4540 | 167 |
|
168 |
When pointing on an ordinary node, an upward and a downward arrow is |
|
169 |
shown. Initially, both of these arrows are green. Clicking on the |
|
3753 | 170 |
upward or downward arrow collapses all predecessor or successor nodes, |
7849 | 171 |
respectively. The arrow's color then changes to red, indicating that |
3753 | 172 |
the predecessor or successor nodes are currently collapsed. The node |
4540 | 173 |
corresponding to the collapsed nodes has the name ``{\tt [....]}''. To |
174 |
uncollapse the nodes again, simply click on the red arrow or on the |
|
175 |
node with the name ``{\tt [....]}''. Similar to the directory browser, |
|
176 |
the contents of theory files can be displayed by double clicking on |
|
177 |
the corresponding node. |
|
3188 | 178 |
|
4540 | 179 |
|
180 |
\subsubsection*{The ``File'' menu} |
|
181 |
||
4555 | 182 |
Please note that due to Java security restrictions this menu is not |
4540 | 183 |
available in the applet version. The meaning of the menu items is as |
184 |
follows: |
|
3753 | 185 |
\begin{description} |
4540 | 186 |
|
7882 | 187 |
\item[Open \dots] Open a new graph file. |
4540 | 188 |
|
189 |
\item[Export to PostScript] Outputs the current graph in {\sc |
|
190 |
PostScript} format, appropriately scaled to fit on one single |
|
7870 | 191 |
sheet of paper. The resulting file can be printed directly. |
4540 | 192 |
|
193 |
\item[Export to EPS] Outputs the current graph in Encapsulated {\sc |
|
194 |
PostScript} format. The resulting file can be included in other |
|
195 |
documents. |
|
196 |
||
3753 | 197 |
\item[Quit] Quit the graph browser. |
4540 | 198 |
|
3753 | 199 |
\end{description} |
200 |
||
4540 | 201 |
|
3753 | 202 |
\subsection*{*Syntax of graph definition files} |
4540 | 203 |
|
3753 | 204 |
A graph definition file has the following syntax: |
205 |
\begin{eqnarray*} |
|
4540 | 206 |
\mbox{\it graph} & = & \{ \: \mbox{\it vertex \tt ;} \: \} ^ + \\ |
207 |
vertex & = & \mbox{\it vertexname} \: \mbox{\it vertexID} \: \mbox{\it dirname} \: [ \mbox{\tt +} ] |
|
208 |
\: \mbox{\it path} \: [ \mbox{\tt <} | \mbox{\tt >} ] \: \{ \: \mbox{\it vertexID} \: \} ^ * |
|
3753 | 209 |
\end{eqnarray*} |
4540 | 210 |
|
3753 | 211 |
The meaning of the items in a vertex description is as follows: |
212 |
\begin{description} |
|
4540 | 213 |
|
3753 | 214 |
\item[vertexname] The name of the vertex. |
4540 | 215 |
|
216 |
\item[vertexID] The vertex identifier. Note that there may be two |
|
217 |
vertices with equal names, whereas identifiers must be unique. |
|
218 |
||
219 |
\item[dirname] The name of the ``directory'' the vertex should be |
|
220 |
placed in. A ``{\tt +}'' sign after {\it dirname} indicates that |
|
221 |
the nodes in the directory are initially visible. Directories are |
|
222 |
initially invisible by default. |
|
223 |
||
224 |
\item[path] The path of the corresponding theory file. This is |
|
225 |
specified relatively to the path of the graph definition file. |
|
226 |
||
227 |
\item[List of successor/predecessor nodes] A ``{\tt <}'' sign before |
|
228 |
the list means that successor nodes are listed, a ``{\tt >}'' sign |
|
229 |
means that predecessor nodes are listed. If neither ``{\tt <}'' nor |
|
230 |
``{\tt >}'' is found, the browser assumes that successor nodes are |
|
231 |
listed. |
|
232 |
||
3753 | 233 |
\end{description} |
5364 | 234 |
|
235 |
||
7849 | 236 |
\section{Preparing Isabelle session documents --- \texttt{isatool document}} |
237 |
\label{sec:tool-document} |
|
238 |
||
239 |
The \tooldx{document} utility prepares logic session documents, processing the |
|
7882 | 240 |
sources both as provided by the user and generated by Isabelle. Its usage is: |
7849 | 241 |
\begin{ttbox} |
242 |
Usage: document [OPTIONS] [DIR] |
|
243 |
||
244 |
Options are: |
|
245 |
-o FORMAT specify output format: dvi (default), dvi.gz, ps, |
|
246 |
ps.gz, pdf |
|
247 |
||
248 |
Prepare the theory session document in DIR (default '.') |
|
249 |
producing the specified output format. |
|
250 |
\end{ttbox} |
|
251 |
This tool is usually run automatically as part of the corresponding session, |
|
7882 | 252 |
provided document preparation has been enabled (cf.\ the \texttt{-d} option of |
253 |
the \texttt{usedir} utility, \S\ref{sec:tool-usedir}). It may be manually |
|
254 |
invoked on the generated browser information document output as well. |
|
7849 | 255 |
|
256 |
\medskip Document preparation requires a properly setup ``\texttt{document}'' |
|
257 |
directory within the logic session sources. This directory is supposed to |
|
7882 | 258 |
contain all the files needed to produce the final document --- apart from the |
259 |
actual theories which are generated by Isabelle. |
|
7849 | 260 |
|
261 |
\medskip For simple documents, the \texttt{document} tool is smart enough to |
|
262 |
create any of the output formats, taking \texttt{root.tex} supplied by the |
|
263 |
user as a starting point. This even includes multiple runs of {\LaTeX} to |
|
264 |
accommodate references and bibliographies (the latter assumes |
|
265 |
\texttt{root.bib} within the same directory). |
|
266 |
||
267 |
For complex documents, a separate \texttt{IsaMakefile} may be given instead. |
|
268 |
It should provide targets for any admissible document format; these have to |
|
269 |
produce corresponding output files named after \texttt{root} as well, e.g.\ |
|
270 |
\texttt{root.dvi} for target format \texttt{dvi}. |
|
271 |
||
272 |
\medskip When running the session, Isabelle copies the original |
|
273 |
\texttt{document} directory into its proper place within |
|
274 |
\texttt{ISABELLE_BROWSER_INFO} according to the session path. Then, for any |
|
275 |
processed theory $A$ some {\LaTeX} source is generated and put there as |
|
276 |
$A$\texttt{.tex}. Furthermore, a list of all generated theory files is put |
|
277 |
into \texttt{session.tex}. Typically, the root {\LaTeX} file provided by the |
|
278 |
user would include \texttt{session.tex} to get a document containing all the |
|
279 |
theories. |
|
280 |
||
281 |
The {\LaTeX} versions of the theories require some macros defined in |
|
282 |
\texttt{isabelle.sty} as distributed with Isabelle. Doing |
|
283 |
\verb,\usepackage{isabelle}, somewhere in \texttt{root.tex} should work fine; |
|
284 |
the underlying Isabelle \texttt{latex} utility already includes an appropriate |
|
7970 | 285 |
{\TeX} inputs path. |
7980 | 286 |
|
287 |
If the text contains any references to Isabelle symbols (such as |
|
288 |
\verb,\<forall>,) then \texttt{isabellesym.sty} should be included as well. |
|
289 |
This package contains a standard set of {\LaTeX} macro definitions |
|
290 |
\verb,\isasym,$foo$ corresponding to \verb,\<,$foo$\verb,>,. The user may |
|
291 |
refer to further symbols as well, simply by providing {\LaTeX} macros of the |
|
292 |
same sort. |
|
293 |
||
7970 | 294 |
For proper setup of PDF documents (with hyperlinks, bookmarks, and thumbnail |
295 |
images), we recommend to include \verb,pdfsetup.sty, as well. It is safe to |
|
296 |
do so even without using PDF~\LaTeX. |
|
7849 | 297 |
|
298 |
\medskip As a final step, \texttt{isatool document} is run on the resulting |
|
299 |
\texttt{document} directory. Thus the actual output document is built and |
|
300 |
installed in its proper place (as linked by the session's |
|
301 |
\texttt{index.html}). Note that the generated sources are left as is. While |
|
302 |
they may be safely deleted afterwards, this is \emph{not} done automatically. |
|
303 |
||
304 |
||
305 |
\section{Running {\LaTeX} within the Isabelle environment --- \texttt{isatool latex}} |
|
306 |
\label{sec:tool-latex} |
|
307 |
||
308 |
The \tooldx{latex} utility provides the basic interface for Isabelle document |
|
309 |
preparation. Its usage is: |
|
310 |
\begin{ttbox} |
|
311 |
Usage: latex [OPTIONS] [FILE] |
|
312 |
||
313 |
Options are: |
|
314 |
-o FORMAT specify output format: dvi (default), dvi.gz, ps, |
|
7868 | 315 |
ps.gz, pdf, bbl, png |
7849 | 316 |
|
317 |
Run LaTeX (and related tools) on FILE (default root.tex), |
|
318 |
producing the specified output format. |
|
319 |
\end{ttbox} |
|
320 |
Appropriate {\LaTeX}-related programs are run on the input file, according to |
|
7868 | 321 |
the given output format: \texttt{latex}, \texttt{pdflatex}, \texttt{dvips}, |
322 |
\texttt{bibtex} (for \texttt{bbl}), and \texttt{thumbpdf} (for \texttt{png}). |
|
323 |
The actual commands are determined from the settings environment |
|
7882 | 324 |
(\texttt{ISABELLE_LATEX} etc., see \S\ref{sec:settings}). |
7849 | 325 |
|
326 |
It is important to note that the {\LaTeX} inputs file space has to be properly |
|
327 |
setup to include the Isabelle styles. Usually, this may be done by modifying |
|
328 |
the \settdx{TEXINPUTS} variable in settings like this: |
|
329 |
\begin{ttbox} |
|
330 |
TEXINPUTS="$ISABELLE_HOME/lib/texinputs:$TEXINPUTS" |
|
331 |
\end{ttbox} |
|
332 |
This is known to work with recent versions of the \textsl{teTeX} distribution. |
|
333 |
||
334 |
||
335 |
||
7883 | 336 |
\section{Managing Isabelle logic sessions --- \texttt{isatool usedir}} \label{sec:tool-usedir} |
7849 | 337 |
|
338 |
The \tooldx{usedir} utility builds object-logic images, or runs example |
|
339 |
sessions based on existing logics. Its usage is: |
|
340 |
\begin{ttbox} |
|
341 |
Usage: usedir LOGIC NAME |
|
342 |
||
343 |
Options are: |
|
344 |
-P PATH set path for remote theory browsing information |
|
345 |
-b build mode (output heap image, using current dir) |
|
346 |
-d FORMAT build document as FORMAT (default false) |
|
347 |
-i BOOL generate theory browsing information, |
|
348 |
i.e. HTML / graph data (default false) |
|
349 |
-r reset session path |
|
350 |
-s NAME override session NAME |
|
351 |
||
352 |
Build object-logic or run examples. Also creates browsing |
|
353 |
information (HTML etc.) according to settings. |
|
354 |
||
355 |
ISABELLE_USEDIR_OPTIONS= |
|
356 |
\end{ttbox} |
|
357 |
||
358 |
Note that the value of the \settdx{ISABELLE_USEDIR_OPTIONS} setting is |
|
359 |
implicitly prefixed to \emph{any} \texttt{usedir} call. Since the |
|
360 |
\ttindex{IsaMakefile}s of all object-logics distributed with Isabelle just |
|
361 |
invoke \texttt{usedir} for the real work, one may control compilation options |
|
362 |
globally via above variable. In particular, generation of \rmindex{HTML} |
|
7882 | 363 |
browsing information and document preparation is controlled here. |
7849 | 364 |
|
365 |
||
366 |
\subsection*{Options} |
|
367 |
||
7882 | 368 |
Basically, there are two different modes of operation: \emph{build mode} |
369 |
(enabled through the \texttt{-b} option) and \emph{example mode} (default). |
|
7849 | 370 |
|
371 |
Calling \texttt{usedir} with \texttt{-b} runs \texttt{isabelle} with input |
|
372 |
image \texttt{LOGIC} and output to \texttt{NAME}, as provided on the command |
|
373 |
line. This will be a batch session, running \texttt{ROOT.ML} from the current |
|
374 |
directory and then quitting. It is assumed that \texttt{ROOT.ML} contains all |
|
7883 | 375 |
{\ML} commands required to build the logic. |
7849 | 376 |
|
377 |
In example mode, \texttt{usedir} runs a read-only session of \texttt{LOGIC} |
|
7882 | 378 |
and automatically runs \texttt{ROOT.ML} from within directory \texttt{NAME}. |
379 |
It assumes that this file contains appropriate {\ML} commands to run the |
|
380 |
desired examples. |
|
7849 | 381 |
|
7882 | 382 |
\medskip The \texttt{-i} option controls theory browser data generation. It |
383 |
may be explicitly turned on or off --- as usual, the last occurrence of |
|
384 |
\texttt{-i} on the command line wins. The \texttt{-P} option specifies a path |
|
385 |
(or actual URL) to be prefixed to any \emph{non-local} reference of existing |
|
386 |
theories. Thus user sessions may easily link to existing Isabelle libraries |
|
387 |
already present on the WWW. |
|
7849 | 388 |
|
389 |
\medskip The \texttt{-d} option controls document preparation. Valid |
|
7882 | 390 |
arguments are \texttt{false} (do not prepare any document; this is default), |
391 |
or any of \texttt{dvi}, \texttt{dvi.gz}, \texttt{ps}, \texttt{ps.gz}, |
|
7849 | 392 |
\texttt{pdf}. The logic session has to provide a properly setup |
393 |
\texttt{document} directory. See \S\ref{sec:tool-document} and |
|
394 |
\S\ref{sec:tool-latex} for more details. |
|
395 |
||
396 |
\medskip Any \texttt{usedir} session is named by some \emph{session |
|
7882 | 397 |
identifier}. These accumulate, documenting the way sessions depend on |
398 |
others. For example, consider \texttt{Pure/FOL/ex}, which refers to the |
|
399 |
examples of {\FOL}, which in turn is built upon {\Pure}. |
|
7849 | 400 |
|
7882 | 401 |
The current session's identifier is by default just the base name of the |
402 |
\texttt{LOGIC} argument (in build mode), or of the \texttt{NAME} argument (in |
|
403 |
example mode). This may be overridden explicitly via the \texttt{-s} option. |
|
7849 | 404 |
|
405 |
||
406 |
\subsection*{Examples} |
|
407 |
||
408 |
Refer to the \texttt{IsaMakefile}s of the Isabelle distribution's |
|
409 |
object-logics as a model for your own developments. For example, see |
|
410 |
\texttt{src/FOL/IsaMakefile}. |
|
411 |
||
5364 | 412 |
%%% Local Variables: |
413 |
%%% mode: latex |
|
414 |
%%% TeX-master: "system" |
|
415 |
%%% End: |