| 
7046
 | 
     1  | 
  | 
| 
7335
 | 
     2  | 
\chapter{Isar Document Syntax}
 | 
| 
7046
 | 
     3  | 
  | 
| 
7315
 | 
     4  | 
We give a complete reference of all basic syntactic entities underlying the
  | 
| 
7335
 | 
     5  | 
Isabelle/Isar document syntax.  Actual theory and proof commands will be
  | 
| 
 | 
     6  | 
introduced later on.
  | 
| 
7315
 | 
     7  | 
  | 
| 
 | 
     8  | 
\medskip
  | 
| 
 | 
     9  | 
  | 
| 
 | 
    10  | 
In order to get started with writing well-formed Isabelle/Isar documents, the
  | 
| 
 | 
    11  | 
most important aspect to be noted is the difference of \emph{inner} versus
 | 
| 
 | 
    12  | 
\emph{outer} syntax.  Inner syntax is that of Isabelle types and terms of the
 | 
| 
 | 
    13  | 
logic, while outer syntax is that of Isabelle/Isar theories (and proofs).  As
  | 
| 
 | 
    14  | 
a general rule, inner syntax entities may occur only as \emph{atomic entities}
 | 
| 
7319
 | 
    15  | 
within outer syntax.  Thus, string \texttt{"x + y"} and identifier \texttt{z}
 | 
| 
 | 
    16  | 
are legal term specifications, while \texttt{x + y} is not.
 | 
| 
7315
 | 
    17  | 
  | 
| 
 | 
    18  | 
\begin{warn}
 | 
| 
7335
 | 
    19  | 
  Note that Isabelle theories used to fake parts of the inner type syntax,
  | 
| 
 | 
    20  | 
  with complicated rules when quotes may be omitted.  Despite the minor
  | 
| 
 | 
    21  | 
  drawback of requiring quotes more often, Isabelle/Isar is simpler and more
  | 
| 
 | 
    22  | 
  robust in that respect.
  | 
| 
7315
 | 
    23  | 
\end{warn}
 | 
| 
 | 
    24  | 
  | 
| 
7466
 | 
    25  | 
\medskip
  | 
| 
 | 
    26  | 
  | 
| 
 | 
    27  | 
Another notable point is proper input termination.  Proof~General demands any
  | 
| 
 | 
    28  | 
command to be terminated by ``\texttt{;}''
 | 
| 
 | 
    29  | 
(semicolon)\index{semicolon}\index{*;}.  As far as plain Isabelle/Isar is
 | 
| 
 | 
    30  | 
concerned, commands may be directly run together.  Thus for better
  | 
| 
 | 
    31  | 
readability, we usually omit semicolons when discussion Isar proof text here.
  | 
| 
 | 
    32  | 
  | 
| 
7315
 | 
    33  | 
  | 
| 
 | 
    34  | 
\section{Lexical matters}\label{sec:lex-syntax}
 | 
| 
 | 
    35  | 
  | 
| 
 | 
    36  | 
The Isabelle/Isar outer syntax provides token classes as presented below.
  | 
| 
 | 
    37  | 
Note that some of these coincide (by full intention) with inner lexical syntax
  | 
| 
 | 
    38  | 
as given in \cite{isabelle-ref}.  These different levels of syntax should not
 | 
| 
 | 
    39  | 
be confused, though.
  | 
| 
7134
 | 
    40  | 
  | 
| 
7335
 | 
    41  | 
%FIXME keyword, command
  | 
| 
7315
 | 
    42  | 
\begin{matharray}{rcl}
 | 
| 
 | 
    43  | 
  ident & = & letter~quasiletter^* \\
  | 
| 
 | 
    44  | 
  longident & = & ident\verb,.,ident~\dots~ident \\
  | 
| 
 | 
    45  | 
  symident & = & sym^+ \\
  | 
| 
 | 
    46  | 
  nat & = & digit^+ \\
  | 
| 
 | 
    47  | 
  var & = & \verb,?,ident ~|~ \verb,?,ident\verb,.,nat \\
  | 
| 
 | 
    48  | 
  typefree & = & \verb,',ident \\
  | 
| 
 | 
    49  | 
  typevar & = & \verb,?,typefree ~|~ \verb,?,typefree\verb,.,nat \\
  | 
| 
 | 
    50  | 
  string & = & \verb,", ~\dots~ \verb,", \\
  | 
| 
7319
 | 
    51  | 
  verbatim & = & \verb,{*, ~\dots~ \verb,*}, \\
 | 
| 
 | 
    52  | 
\end{matharray}
 | 
| 
 | 
    53  | 
\begin{matharray}{rcl}
 | 
| 
7315
 | 
    54  | 
  letter & = & \verb,a, ~|~ \dots ~|~ \verb,z, ~|~ \verb,A, ~|~ \dots ~|~ \verb,Z, \\
  | 
| 
 | 
    55  | 
  digit & = & \verb,0, ~|~ \dots ~|~ \verb,9, \\
  | 
| 
 | 
    56  | 
  quasiletter & = & letter ~|~ digit ~|~ \verb,_, ~|~ \verb,', \\
  | 
| 
 | 
    57  | 
  sym & = & \verb,!, ~|~ \verb,#, ~|~ \verb,$, ~|~ \verb,%, ~|~ \verb,&, ~|~  %$
  | 
| 
7319
 | 
    58  | 
   \verb,*, ~|~ \verb,+, ~|~ \verb,-, ~|~ \verb,/, ~|~ \verb,:, ~|~
  | 
| 
 | 
    59  | 
   \verb,<, ~|~ \verb,=, ~|~ \verb,>, ~|~ \verb,?, ~|~ \mathtt{\at} ~|~ \\
 | 
| 
 | 
    60  | 
  & & \verb,^, ~|~ \verb,_, ~|~ \verb,`, ~|~ \verb,|, ~|~ \verb,~, \\
  | 
| 
7315
 | 
    61  | 
\end{matharray}
 | 
| 
 | 
    62  | 
  | 
| 
 | 
    63  | 
The syntax of \texttt{string} admits any characters, including newlines;
 | 
| 
 | 
    64  | 
\verb|"| and \verb|\| have to be escaped by a backslash, though.  Note that
  | 
| 
 | 
    65  | 
ML-style control character notation is not supported.  The body of
  | 
| 
 | 
    66  | 
\texttt{verbatim} may consist of any text not containing \verb|*}|.
 | 
| 
 | 
    67  | 
  | 
| 
7335
 | 
    68  | 
Comments take the form \texttt{(*~\dots~*)} and may be nested, just as in
 | 
| 
 | 
    69  | 
ML.\footnote{Proof~General may get confused by nested comments, though.} Note
 | 
| 
 | 
    70  | 
that these are \emph{source} comments only, which are stripped after lexical
 | 
| 
 | 
    71  | 
analysis of the input.  The Isar document syntax also provides several
  | 
| 
7315
 | 
    72  | 
elements of \emph{formal comments} that are actually part of the text (see
 | 
| 
 | 
    73  | 
\S\ref{sec:comments}, \S\ref{sec:formal-cmt-thy}, \S\ref{sec:formal-cmt-prf}).
 | 
| 
 | 
    74  | 
  | 
| 
7046
 | 
    75  | 
  | 
| 
 | 
    76  | 
\section{Common syntax entities}
 | 
| 
 | 
    77  | 
  | 
| 
7335
 | 
    78  | 
Subsequently, we introduce several basic syntactic entities, such as names,
  | 
| 
 | 
    79  | 
terms, theorem specifications, which have been factored out of the actual Isar
  | 
| 
 | 
    80  | 
language elements to be described later.
  | 
| 
7134
 | 
    81  | 
  | 
| 
7167
 | 
    82  | 
Note that some of the basic syntactic entities introduced below act much like
  | 
| 
7335
 | 
    83  | 
tokens rather than nonterminals, especially for the sake of error messages.
  | 
| 
7134
 | 
    84  | 
E.g.\ syntax elements such as $\CONSTS$ referring to \railqtoken{name} or
 | 
| 
7167
 | 
    85  | 
\railqtoken{type} would really report a missing name or type rather than any
 | 
| 
 | 
    86  | 
of the constituent primitive tokens such as \railtoken{ident} or
 | 
| 
 | 
    87  | 
\railtoken{string}.
 | 
| 
7046
 | 
    88  | 
  | 
| 
7050
 | 
    89  | 
  | 
| 
 | 
    90  | 
\subsection{Names}
 | 
| 
 | 
    91  | 
  | 
| 
7134
 | 
    92  | 
Entity \railqtoken{name} usually refers to any name of types, constants,
 | 
| 
7167
 | 
    93  | 
theorems etc.\ that are to be \emph{declared} or \emph{defined} (so qualified
 | 
| 
7134
 | 
    94  | 
identifiers are excluded).  Quoted strings provide an escape for
  | 
| 
 | 
    95  | 
non-identifier names or those ruled out by outer syntax keywords (e.g.\ 
  | 
| 
 | 
    96  | 
\verb|"let"|).  Already existing objects are usually referenced by
  | 
| 
 | 
    97  | 
\railqtoken{nameref}.
 | 
| 
7050
 | 
    98  | 
  | 
| 
7141
 | 
    99  | 
\indexoutertoken{name}\indexoutertoken{parname}\indexoutertoken{nameref}
 | 
| 
7046
 | 
   100  | 
\begin{rail}
 | 
| 
7167
 | 
   101  | 
  name: ident | symident | string
  | 
| 
7046
 | 
   102  | 
  ;
  | 
| 
7167
 | 
   103  | 
  parname: '(' name ')'
 | 
| 
7141
 | 
   104  | 
  ;
  | 
| 
7167
 | 
   105  | 
  nameref: name | longident
  | 
| 
7046
 | 
   106  | 
  ;
  | 
| 
 | 
   107  | 
\end{rail}
 | 
| 
 | 
   108  | 
  | 
| 
7050
 | 
   109  | 
  | 
| 
7315
 | 
   110  | 
\subsection{Comments}\label{sec:comments}
 | 
| 
7046
 | 
   111  | 
  | 
| 
7167
 | 
   112  | 
Large chunks of plain \railqtoken{text} are usually given
 | 
| 
 | 
   113  | 
\railtoken{verbatim}, i.e.\ enclosed in \verb|{*|\dots\verb|*}|.  For
 | 
| 
7175
 | 
   114  | 
convenience, any of the smaller text units conforming to \railqtoken{nameref}
 | 
| 
7466
 | 
   115  | 
are admitted as well.  Almost any of the Isar commands may be annotated by a
  | 
| 
 | 
   116  | 
marginal \railnonterm{comment} of the form \texttt{--} \railqtoken{text}.
 | 
| 
 | 
   117  | 
Note that the latter kind of comment is actually part of the language, while
  | 
| 
 | 
   118  | 
source level comments \verb|(*|\dots\verb|*)| are stripped at the lexical
  | 
| 
 | 
   119  | 
level.  A few commands such as $\PROOFNAME$ admit additional markup with a
  | 
| 
 | 
   120  | 
``level of interest'': \texttt{\%} followed by an optional number $n$ (default
 | 
| 
 | 
   121  | 
$n = 1$) indicates that the respective part of the document becomes $n$ levels
  | 
| 
 | 
   122  | 
more obscure; \texttt{\%\%} means that interest drops by $\infty$ --- abandon
 | 
| 
 | 
   123  | 
every hope, who enter here.
  | 
| 
7050
 | 
   124  | 
  | 
| 
 | 
   125  | 
\indexoutertoken{text}\indexouternonterm{comment}\indexouternonterm{interest}
 | 
| 
7046
 | 
   126  | 
\begin{rail}
 | 
| 
7167
 | 
   127  | 
  text: verbatim | nameref
  | 
| 
7050
 | 
   128  | 
  ;
  | 
| 
7167
 | 
   129  | 
  comment: '--' text
  | 
| 
7046
 | 
   130  | 
  ;
  | 
| 
7167
 | 
   131  | 
  interest: percent nat? | ppercent
  | 
| 
7046
 | 
   132  | 
  ;
  | 
| 
 | 
   133  | 
\end{rail}
 | 
| 
 | 
   134  | 
  | 
| 
 | 
   135  | 
  | 
| 
7335
 | 
   136  | 
\subsection{Type classes, sorts and arities}
 | 
| 
7046
 | 
   137  | 
  | 
| 
7050
 | 
   138  | 
The syntax of sorts and arities is given directly at the outer level.  Note
  | 
| 
7335
 | 
   139  | 
that this is in contrast to types and terms (see \ref{sec:types-terms}).
 | 
| 
7050
 | 
   140  | 
  | 
| 
 | 
   141  | 
\indexouternonterm{sort}\indexouternonterm{arity}\indexouternonterm{simplearity}
 | 
| 
7135
 | 
   142  | 
\indexouternonterm{classdecl}
 | 
| 
7046
 | 
   143  | 
\begin{rail}
 | 
| 
7321
 | 
   144  | 
  classdecl: name ('<' (nameref + ','))?
 | 
| 
7046
 | 
   145  | 
  ;
  | 
| 
7167
 | 
   146  | 
  sort: nameref | lbrace (nameref * ',') rbrace
  | 
| 
7046
 | 
   147  | 
  ;
  | 
| 
7167
 | 
   148  | 
  arity: ('(' (sort + ',') ')')? sort
 | 
| 
7050
 | 
   149  | 
  ;
  | 
| 
7167
 | 
   150  | 
  simplearity: ('(' (sort + ',') ')')? nameref
 | 
| 
 | 
   151  | 
  ;
  | 
| 
7050
 | 
   152  | 
\end{rail}
 | 
| 
 | 
   153  | 
  | 
| 
 | 
   154  | 
  | 
| 
7167
 | 
   155  | 
\subsection{Types and terms}\label{sec:types-terms}
 | 
| 
7050
 | 
   156  | 
  | 
| 
7167
 | 
   157  | 
The actual inner Isabelle syntax, that of types and terms of the logic, is far
  | 
| 
7335
 | 
   158  | 
too advanced in order to be modelled explicitly at the outer theory level.
  | 
| 
 | 
   159  | 
Basically, any such entity has to be quoted here to turn it into a single
  | 
| 
 | 
   160  | 
token (the parsing and type-checking is performed later).  For convenience, a
  | 
| 
 | 
   161  | 
slightly more liberal convention is adopted: quotes may be omitted for any
  | 
| 
 | 
   162  | 
type or term that is already \emph{atomic} at the outer level.  E.g.\ one may
 | 
| 
7466
 | 
   163  | 
write just \texttt{x} instead of \texttt{"x"}.  Note that symbolic identifiers
 | 
| 
 | 
   164  | 
such as \texttt{++} are available as well, provided these are not superceded
 | 
| 
 | 
   165  | 
by commands or keywords (like \texttt{+}).
 | 
| 
7050
 | 
   166  | 
  | 
| 
 | 
   167  | 
\indexoutertoken{type}\indexoutertoken{term}\indexoutertoken{prop}
 | 
| 
 | 
   168  | 
\begin{rail}
 | 
| 
7167
 | 
   169  | 
  type: nameref | typefree | typevar
  | 
| 
7050
 | 
   170  | 
  ;
  | 
| 
7466
 | 
   171  | 
  term: nameref | var | nat
  | 
| 
7050
 | 
   172  | 
  ;
  | 
| 
7167
 | 
   173  | 
  prop: term
  | 
| 
7050
 | 
   174  | 
  ;
  | 
| 
 | 
   175  | 
\end{rail}
 | 
| 
 | 
   176  | 
  | 
| 
7167
 | 
   177  | 
Type declarations and definitions usually refer to \railnonterm{typespec} on
 | 
| 
 | 
   178  | 
the left-hand side.  This models basic type constructor application at the
  | 
| 
 | 
   179  | 
outer syntax level.  Note that only plain postfix notation is available here,
  | 
| 
 | 
   180  | 
but no infixes.
  | 
| 
7050
 | 
   181  | 
  | 
| 
 | 
   182  | 
\indexouternonterm{typespec}
 | 
| 
 | 
   183  | 
\begin{rail}
 | 
| 
7167
 | 
   184  | 
  typespec: (() | typefree | '(' ( typefree + ',' ) ')') name
 | 
| 
7050
 | 
   185  | 
  ;
  | 
| 
 | 
   186  | 
\end{rail}
 | 
| 
 | 
   187  | 
  | 
| 
 | 
   188  | 
  | 
| 
7315
 | 
   189  | 
\subsection{Term patterns}\label{sec:term-pats}
 | 
| 
7050
 | 
   190  | 
  | 
| 
7167
 | 
   191  | 
Assumptions and goal statements usually admit automatic binding of schematic
  | 
| 
 | 
   192  | 
text variables by giving (optional) patterns of the form $\IS{p@1 \dots p@n}$.
 | 
| 
 | 
   193  | 
There are separate versions available for \railqtoken{term}s and
 | 
| 
 | 
   194  | 
\railqtoken{prop}s.  The latter provides a $\CONCLNAME$ part with patterns
 | 
| 
 | 
   195  | 
referring the (atomic) conclusion of a rule.
  | 
| 
7050
 | 
   196  | 
  | 
| 
 | 
   197  | 
\indexouternonterm{termpat}\indexouternonterm{proppat}
 | 
| 
 | 
   198  | 
\begin{rail}
 | 
| 
7167
 | 
   199  | 
  termpat: '(' ('is' term +) ')'
 | 
| 
7050
 | 
   200  | 
  ;
  | 
| 
7167
 | 
   201  | 
  proppat: '(' (('is' prop +) | 'concl' ('is' prop +) | ('is' prop +) 'concl' ('is' prop +)) ')'
 | 
| 
7046
 | 
   202  | 
  ;
  | 
| 
 | 
   203  | 
\end{rail}
 | 
| 
 | 
   204  | 
  | 
| 
 | 
   205  | 
  | 
| 
7050
 | 
   206  | 
\subsection{Mixfix annotations}
 | 
| 
 | 
   207  | 
  | 
| 
7134
 | 
   208  | 
Mixfix annotations specify concrete \emph{inner} syntax of Isabelle types and
 | 
| 
7167
 | 
   209  | 
terms.  Some commands such as $\TYPES$ admit infixes only, while $\CONSTS$ and
  | 
| 
 | 
   210  | 
$\isarkeyword{syntax}$ support the full range of general mixfixes and binders.
 | 
| 
7046
 | 
   211  | 
  | 
| 
7050
 | 
   212  | 
\indexouternonterm{infix}\indexouternonterm{mixfix}
 | 
| 
7046
 | 
   213  | 
\begin{rail}
 | 
| 
7167
 | 
   214  | 
  infix: '(' ('infixl' | 'infixr') string? nat ')'
 | 
| 
 | 
   215  | 
  ;
  | 
| 
7175
 | 
   216  | 
  mixfix: infix | '(' string prios? nat? ')' | '(' 'binder' string prios? nat ')'
 | 
| 
7050
 | 
   217  | 
  ;
  | 
| 
 | 
   218  | 
  | 
| 
7175
 | 
   219  | 
  prios: '[' (nat + ',') ']'
  | 
| 
7050
 | 
   220  | 
  ;
  | 
| 
7046
 | 
   221  | 
\end{rail}
 | 
| 
 | 
   222  | 
  | 
| 
7050
 | 
   223  | 
  | 
| 
7134
 | 
   224  | 
\subsection{Attributes and theorems}\label{sec:syn-att}
 | 
| 
7050
 | 
   225  | 
  | 
| 
 | 
   226  | 
Attributes (and proof methods, see \S\ref{sec:syn-meth}) have their own
 | 
| 
7335
 | 
   227  | 
``semi-inner'' syntax, in the sense that input conforming to
  | 
| 
 | 
   228  | 
\railnonterm{args} below is parsed by the attribute a second time.  The
 | 
| 
 | 
   229  | 
attribute argument specifications may be any sequence of atomic entities
  | 
| 
 | 
   230  | 
(identifiers, strings etc.), or properly bracketed argument lists.  Below
  | 
| 
 | 
   231  | 
\railqtoken{atom} refers to any atomic entity, including \railtoken{keyword}s
 | 
| 
 | 
   232  | 
conforming to \railtoken{symident}.
 | 
| 
7050
 | 
   233  | 
  | 
| 
 | 
   234  | 
\indexoutertoken{atom}\indexouternonterm{args}\indexouternonterm{attributes}
 | 
| 
 | 
   235  | 
\begin{rail}
 | 
| 
7466
 | 
   236  | 
  atom: nameref | typefree | typevar | var | nat | keyword
  | 
| 
7134
 | 
   237  | 
  ;
  | 
| 
7167
 | 
   238  | 
  arg: atom | '(' args ')' | '[' args ']' | lbrace args rbrace
 | 
| 
7050
 | 
   239  | 
  ;
  | 
| 
7167
 | 
   240  | 
  args: arg *
  | 
| 
7134
 | 
   241  | 
  ;
  | 
| 
7167
 | 
   242  | 
  attributes: '[' (nameref args * ',') ']'
  | 
| 
7050
 | 
   243  | 
  ;
  | 
| 
 | 
   244  | 
\end{rail}
 | 
| 
 | 
   245  | 
  | 
| 
7315
 | 
   246  | 
Theorem specifications come in several flavours: \railnonterm{axmdecl} and
 | 
| 
7175
 | 
   247  | 
\railnonterm{thmdecl} usually refer to axioms, assumptions or results of goal
 | 
| 
 | 
   248  | 
statements, \railnonterm{thmdef} collects lists of existing theorems.
 | 
| 
 | 
   249  | 
Existing theorems are given by \railnonterm{thmref} and \railnonterm{thmrefs}
 | 
| 
 | 
   250  | 
(the former requires an actual singleton result).  Any of these theorem
  | 
| 
 | 
   251  | 
specifications may include lists of attributes both on the left and right hand
  | 
| 
7466
 | 
   252  | 
sides; attributes are applied to any immediately preceding theorem.  If names
  | 
| 
 | 
   253  | 
are omitted, the theorems are not stored within the theory's theorem database;
  | 
| 
 | 
   254  | 
any given attributes are still applied, though.
  | 
| 
7050
 | 
   255  | 
  | 
| 
7135
 | 
   256  | 
\indexouternonterm{thmdecl}\indexouternonterm{axmdecl}
 | 
| 
 | 
   257  | 
\indexouternonterm{thmdef}\indexouternonterm{thmrefs}
 | 
| 
7050
 | 
   258  | 
\begin{rail}
 | 
| 
7167
 | 
   259  | 
  axmdecl: name attributes? ':'
  | 
| 
7050
 | 
   260  | 
  ;
  | 
| 
7167
 | 
   261  | 
  thmdecl: thmname ':'
  | 
| 
7135
 | 
   262  | 
  ;
  | 
| 
7167
 | 
   263  | 
  thmdef: thmname '='
  | 
| 
7050
 | 
   264  | 
  ;
  | 
| 
7175
 | 
   265  | 
  thmref: nameref attributes?
  | 
| 
 | 
   266  | 
  ;
  | 
| 
 | 
   267  | 
  thmrefs: thmref +
  | 
| 
7134
 | 
   268  | 
  ;
  | 
| 
7167
 | 
   269  | 
  | 
| 
 | 
   270  | 
  thmname: name attributes | name | attributes
  | 
| 
7050
 | 
   271  | 
  ;
  | 
| 
 | 
   272  | 
\end{rail}
 | 
| 
7046
 | 
   273  | 
  | 
| 
 | 
   274  | 
  | 
| 
7050
 | 
   275  | 
\subsection{Proof methods}\label{sec:syn-meth}
 | 
| 
7046
 | 
   276  | 
  | 
| 
7050
 | 
   277  | 
Proof methods are either basic ones, or expressions composed of methods via
  | 
| 
7175
 | 
   278  | 
``\texttt{,}'' (sequential composition), ``\texttt{|}'' (alternative choices),
 | 
| 
7466
 | 
   279  | 
``\texttt{?}'' (try once), ``\texttt{+}'' (repeat at least once).  In
 | 
| 
 | 
   280  | 
practice, proof methods are usually just a comma separated list of
  | 
| 
7430
 | 
   281  | 
\railqtoken{nameref}~\railnonterm{args} specifications.  Thus the syntax is
 | 
| 
 | 
   282  | 
similar to that of attributes, with plain parentheses instead of square
  | 
| 
 | 
   283  | 
brackets.  Note that parentheses may be dropped for single method
  | 
| 
 | 
   284  | 
specifications without arguments.
  | 
| 
7046
 | 
   285  | 
  | 
| 
7050
 | 
   286  | 
\indexouternonterm{method}
 | 
| 
 | 
   287  | 
\begin{rail}
 | 
| 
7430
 | 
   288  | 
  method: (nameref | '(' methods ')') (() | '?' | '+')
 | 
| 
7134
 | 
   289  | 
  ;
  | 
| 
7167
 | 
   290  | 
  methods: (nameref args | method) + (',' | '|')
 | 
| 
7050
 | 
   291  | 
  ;
  | 
| 
 | 
   292  | 
\end{rail}
 | 
| 
7046
 | 
   293  | 
  | 
| 
 | 
   294  | 
  | 
| 
 | 
   295  | 
%%% Local Variables: 
  | 
| 
 | 
   296  | 
%%% mode: latex
  | 
| 
 | 
   297  | 
%%% TeX-master: "isar-ref"
  | 
| 
 | 
   298  | 
%%% End: 
  |