doc-src/IsarRef/syntax.tex
author wenzelm
Wed, 30 Aug 2000 17:55:12 +0200
changeset 9752 a09f4a7accea
parent 9728 1546ad1c7839
child 10152 473807a5a436
permissions -rw-r--r--
renamed antiquotation 'name' to 'text';
added antiquotation option 'source';
wenzelm@7046
     1
wenzelm@7895
     2
\chapter{Isar Syntax Primitives}
wenzelm@7046
     3
wenzelm@7315
     4
We give a complete reference of all basic syntactic entities underlying the
wenzelm@7335
     5
Isabelle/Isar document syntax.  Actual theory and proof commands will be
wenzelm@7335
     6
introduced later on.
wenzelm@7134
     7
wenzelm@7315
     8
\medskip
wenzelm@7046
     9
wenzelm@7315
    10
In order to get started with writing well-formed Isabelle/Isar documents, the
wenzelm@7315
    11
most important aspect to be noted is the difference of \emph{inner} versus
wenzelm@7315
    12
\emph{outer} syntax.  Inner syntax is that of Isabelle types and terms of the
wenzelm@7895
    13
logic, while outer syntax is that of Isabelle/Isar theories (including
wenzelm@7895
    14
proofs).  As a general rule, inner syntax entities may occur only as
wenzelm@7895
    15
\emph{atomic entities} within outer syntax.  For example, the string
wenzelm@7895
    16
\texttt{"x + y"} and identifier \texttt{z} are legal term specifications
wenzelm@7895
    17
within a theory, while \texttt{x + y} is not.
wenzelm@7315
    18
wenzelm@7315
    19
\begin{warn}
wenzelm@8378
    20
  Note that classic Isabelle theories used to fake parts of the inner syntax
wenzelm@8378
    21
  of types, with rather complicated rules when quotes may be omitted.  Despite
wenzelm@7981
    22
  the minor drawback of requiring quotes more often, the syntax of
wenzelm@8548
    23
  Isabelle/Isar is much simpler and more robust in that respect.
wenzelm@7315
    24
\end{warn}
wenzelm@7315
    25
wenzelm@7466
    26
\medskip
wenzelm@7466
    27
wenzelm@9601
    28
Isabelle/Isar input may contain any number of input termination characters
wenzelm@9601
    29
``\texttt{;}'' (semicolon) to separate commands explicitly.  This may be
wenzelm@9601
    30
particularly useful in interactive shell sessions to make clear where the
wenzelm@9601
    31
current command is intended to end.  Otherwise, the interactive loop will
wenzelm@9601
    32
continue until end-of-command in clearly indicated from the input syntax,
wenzelm@9601
    33
e.g.\ encounter of the next command keyword.
wenzelm@9601
    34
wenzelm@9601
    35
Advanced interfaces such as Proof~General \cite{proofgeneral} do not require
wenzelm@9601
    36
explicit semicolons, the amount of input text is determined automatically by
wenzelm@9601
    37
inspecting the Emacs text buffer.  Also note that in the presentation of
wenzelm@9601
    38
Isabelle/Isar documents, semicolons are omitted in any case to gain
wenzelm@7981
    39
readability.
wenzelm@7466
    40
wenzelm@7315
    41
wenzelm@7315
    42
\section{Lexical matters}\label{sec:lex-syntax}
wenzelm@7315
    43
wenzelm@7315
    44
The Isabelle/Isar outer syntax provides token classes as presented below.
wenzelm@7895
    45
Note that some of these coincide (by full intention) with the inner lexical
wenzelm@7895
    46
syntax as presented in \cite{isabelle-ref}.  These different levels of syntax
wenzelm@7895
    47
should not be confused, though.
wenzelm@7315
    48
wenzelm@7335
    49
%FIXME keyword, command
wenzelm@9617
    50
\indexoutertoken{ident}\indexoutertoken{longident}\indexoutertoken{symident}
wenzelm@9617
    51
\indexoutertoken{nat}\indexoutertoken{var}\indexoutertoken{typefree}
wenzelm@9617
    52
\indexoutertoken{typevar}\indexoutertoken{string}\indexoutertoken{verbatim}
wenzelm@7315
    53
\begin{matharray}{rcl}
wenzelm@7315
    54
  ident & = & letter~quasiletter^* \\
wenzelm@7315
    55
  longident & = & ident\verb,.,ident~\dots~ident \\
wenzelm@8548
    56
  symident & = & sym^+ ~|~ symbol \\
wenzelm@7315
    57
  nat & = & digit^+ \\
wenzelm@7315
    58
  var & = & \verb,?,ident ~|~ \verb,?,ident\verb,.,nat \\
wenzelm@7315
    59
  typefree & = & \verb,',ident \\
wenzelm@7315
    60
  typevar & = & \verb,?,typefree ~|~ \verb,?,typefree\verb,.,nat \\
wenzelm@7315
    61
  string & = & \verb,", ~\dots~ \verb,", \\
wenzelm@7319
    62
  verbatim & = & \verb,{*, ~\dots~ \verb,*}, \\
wenzelm@7319
    63
\end{matharray}
wenzelm@7319
    64
\begin{matharray}{rcl}
wenzelm@7315
    65
  letter & = & \verb,a, ~|~ \dots ~|~ \verb,z, ~|~ \verb,A, ~|~ \dots ~|~ \verb,Z, \\
wenzelm@7315
    66
  digit & = & \verb,0, ~|~ \dots ~|~ \verb,9, \\
wenzelm@7315
    67
  quasiletter & = & letter ~|~ digit ~|~ \verb,_, ~|~ \verb,', \\
wenzelm@7315
    68
  sym & = & \verb,!, ~|~ \verb,#, ~|~ \verb,$, ~|~ \verb,%, ~|~ \verb,&, ~|~  %$
wenzelm@7319
    69
   \verb,*, ~|~ \verb,+, ~|~ \verb,-, ~|~ \verb,/, ~|~ \verb,:, ~|~
wenzelm@7319
    70
   \verb,<, ~|~ \verb,=, ~|~ \verb,>, ~|~ \verb,?, ~|~ \mathtt{\at} ~|~ \\
wenzelm@7319
    71
  & & \verb,^, ~|~ \verb,_, ~|~ \verb,`, ~|~ \verb,|, ~|~ \verb,~, \\
wenzelm@8548
    72
  symbol & = & {\forall} ~|~ {\exists} ~|~ \dots
wenzelm@7315
    73
\end{matharray}
wenzelm@7315
    74
wenzelm@7315
    75
The syntax of \texttt{string} admits any characters, including newlines;
wenzelm@7895
    76
``\verb|"|'' (double-quote) and ``\verb|\|'' (backslash) have to be escaped by
wenzelm@9051
    77
a backslash; newlines need not be escaped.  Note that ML-style control
wenzelm@9051
    78
characters are \emph{not} supported.  The body of \texttt{verbatim} may
wenzelm@9051
    79
consist of any text not containing ``\verb|*}|''.
wenzelm@7315
    80
wenzelm@7895
    81
Comments take the form \texttt{(*~\dots~*)} and may be
wenzelm@8378
    82
nested\footnote{Proof~General may occasionally get confused by nested
wenzelm@8378
    83
  comments.}, just as in ML. Note that these are \emph{source} comments only,
wenzelm@8378
    84
which are stripped after lexical analysis of the input.  The Isar document
wenzelm@8378
    85
syntax also provides \emph{formal comments} that are actually part of the text
wenzelm@8378
    86
(see \S\ref{sec:comments}).
wenzelm@7315
    87
wenzelm@7046
    88
wenzelm@7046
    89
\section{Common syntax entities}
wenzelm@7046
    90
wenzelm@7335
    91
Subsequently, we introduce several basic syntactic entities, such as names,
wenzelm@7895
    92
terms, and theorem specifications, which have been factored out of the actual
wenzelm@7895
    93
Isar language elements to be described later.
wenzelm@7134
    94
wenzelm@7981
    95
Note that some of the basic syntactic entities introduced below (e.g.\ 
wenzelm@7895
    96
\railqtoken{name}) act much like tokens rather than plain nonterminals (e.g.\ 
wenzelm@7895
    97
\railnonterm{sort}), especially for the sake of error messages.  E.g.\ syntax
wenzelm@7895
    98
elements such as $\CONSTS$ referring to \railqtoken{name} or \railqtoken{type}
wenzelm@7895
    99
would really report a missing name or type rather than any of the constituent
wenzelm@7895
   100
primitive tokens such as \railtoken{ident} or \railtoken{string}.
wenzelm@7046
   101
wenzelm@7050
   102
wenzelm@7050
   103
\subsection{Names}
wenzelm@7050
   104
wenzelm@7134
   105
Entity \railqtoken{name} usually refers to any name of types, constants,
wenzelm@7167
   106
theorems etc.\ that are to be \emph{declared} or \emph{defined} (so qualified
wenzelm@8548
   107
identifiers are excluded here).  Quoted strings provide an escape for
wenzelm@7134
   108
non-identifier names or those ruled out by outer syntax keywords (e.g.\ 
wenzelm@7134
   109
\verb|"let"|).  Already existing objects are usually referenced by
wenzelm@7134
   110
\railqtoken{nameref}.
wenzelm@7050
   111
wenzelm@7141
   112
\indexoutertoken{name}\indexoutertoken{parname}\indexoutertoken{nameref}
wenzelm@9617
   113
\indexoutertoken{int}
wenzelm@7046
   114
\begin{rail}
wenzelm@8145
   115
  name: ident | symident | string | nat
wenzelm@7046
   116
  ;
wenzelm@7167
   117
  parname: '(' name ')'
wenzelm@7141
   118
  ;
wenzelm@7167
   119
  nameref: name | longident
wenzelm@7046
   120
  ;
wenzelm@9617
   121
  int: nat | '-' nat
wenzelm@9617
   122
  ;
wenzelm@7046
   123
\end{rail}
wenzelm@7046
   124
wenzelm@7050
   125
wenzelm@7315
   126
\subsection{Comments}\label{sec:comments}
wenzelm@7046
   127
wenzelm@7167
   128
Large chunks of plain \railqtoken{text} are usually given
wenzelm@7895
   129
\railtoken{verbatim}, i.e.\ enclosed in \verb|{*|~\dots~\verb|*}|.  For
wenzelm@7175
   130
convenience, any of the smaller text units conforming to \railqtoken{nameref}
wenzelm@8102
   131
are admitted as well.  Almost any of the Isar commands may be annotated by
wenzelm@7466
   132
marginal \railnonterm{comment} of the form \texttt{--} \railqtoken{text}.
wenzelm@7466
   133
Note that the latter kind of comment is actually part of the language, while
wenzelm@7895
   134
source level comments \verb|(*|~\dots~\verb|*)| are stripped at the lexical
wenzelm@7466
   135
level.  A few commands such as $\PROOFNAME$ admit additional markup with a
wenzelm@7466
   136
``level of interest'': \texttt{\%} followed by an optional number $n$ (default
wenzelm@7466
   137
$n = 1$) indicates that the respective part of the document becomes $n$ levels
wenzelm@7466
   138
more obscure; \texttt{\%\%} means that interest drops by $\infty$ --- abandon
wenzelm@7466
   139
every hope, who enter here.
wenzelm@7050
   140
wenzelm@7050
   141
\indexoutertoken{text}\indexouternonterm{comment}\indexouternonterm{interest}
wenzelm@7046
   142
\begin{rail}
wenzelm@7167
   143
  text: verbatim | nameref
wenzelm@7050
   144
  ;
wenzelm@8102
   145
  comment: ('--' text +)
wenzelm@7046
   146
  ;
wenzelm@7167
   147
  interest: percent nat? | ppercent
wenzelm@7046
   148
  ;
wenzelm@7046
   149
\end{rail}
wenzelm@7046
   150
wenzelm@7046
   151
wenzelm@7335
   152
\subsection{Type classes, sorts and arities}
wenzelm@7046
   153
wenzelm@8896
   154
Classes are specified by plain names.  Sorts have a very simple inner syntax,
wenzelm@8896
   155
which is either a single class name $c$ or a list $\{c@1, \dots, c@n\}$
wenzelm@8896
   156
referring to the intersection of these classes.  The syntax of type arities is
wenzelm@8896
   157
given directly at the outer level.
wenzelm@7050
   158
wenzelm@7050
   159
\indexouternonterm{sort}\indexouternonterm{arity}\indexouternonterm{simplearity}
wenzelm@7135
   160
\indexouternonterm{classdecl}
wenzelm@7046
   161
\begin{rail}
wenzelm@7321
   162
  classdecl: name ('<' (nameref + ','))?
wenzelm@7046
   163
  ;
wenzelm@8896
   164
  sort: nameref
wenzelm@7046
   165
  ;
wenzelm@7167
   166
  arity: ('(' (sort + ',') ')')? sort
wenzelm@7046
   167
  ;
wenzelm@7167
   168
  simplearity: ('(' (sort + ',') ')')? nameref
wenzelm@7167
   169
  ;
wenzelm@7046
   170
\end{rail}
wenzelm@7046
   171
wenzelm@7046
   172
wenzelm@7167
   173
\subsection{Types and terms}\label{sec:types-terms}
wenzelm@7046
   174
wenzelm@7167
   175
The actual inner Isabelle syntax, that of types and terms of the logic, is far
wenzelm@7895
   176
too sophisticated in order to be modelled explicitly at the outer theory
wenzelm@8548
   177
level.  Basically, any such entity has to be quoted to turn it into a single
wenzelm@8548
   178
token (the parsing and type-checking is performed internally later).  For
wenzelm@8548
   179
convenience, a slightly more liberal convention is adopted: quotes may be
wenzelm@7895
   180
omitted for any type or term that is already \emph{atomic} at the outer level.
wenzelm@7895
   181
For example, one may write just \texttt{x} instead of \texttt{"x"}.  Note that
wenzelm@8548
   182
symbolic identifiers (e.g.\ \texttt{++} or $\forall$) are available as well,
wenzelm@8548
   183
provided these are not superseded by commands or keywords (e.g.\ \texttt{+}).
wenzelm@7050
   184
wenzelm@7050
   185
\indexoutertoken{type}\indexoutertoken{term}\indexoutertoken{prop}
wenzelm@7046
   186
\begin{rail}
wenzelm@7167
   187
  type: nameref | typefree | typevar
wenzelm@7050
   188
  ;
wenzelm@8593
   189
  term: nameref | var
wenzelm@7050
   190
  ;
wenzelm@7167
   191
  prop: term
wenzelm@7050
   192
  ;
wenzelm@7046
   193
\end{rail}
wenzelm@7046
   194
wenzelm@8690
   195
Positional instantiations are indicated by giving a sequence of terms, or the
wenzelm@8690
   196
placeholder ``$\_$'' (underscore), which means to skip a position.
wenzelm@8690
   197
wenzelm@8690
   198
\indexoutertoken{inst}\indexoutertoken{insts}
wenzelm@8690
   199
\begin{rail}
wenzelm@8690
   200
  inst: underscore | term
wenzelm@8690
   201
  ;
wenzelm@8690
   202
  insts: (inst *)
wenzelm@8690
   203
  ;
wenzelm@8690
   204
\end{rail}
wenzelm@8690
   205
wenzelm@7167
   206
Type declarations and definitions usually refer to \railnonterm{typespec} on
wenzelm@7167
   207
the left-hand side.  This models basic type constructor application at the
wenzelm@7167
   208
outer syntax level.  Note that only plain postfix notation is available here,
wenzelm@7167
   209
but no infixes.
wenzelm@7050
   210
wenzelm@7050
   211
\indexouternonterm{typespec}
wenzelm@7050
   212
\begin{rail}
wenzelm@7167
   213
  typespec: (() | typefree | '(' ( typefree + ',' ) ')') name
wenzelm@7050
   214
  ;
wenzelm@7050
   215
\end{rail}
wenzelm@7050
   216
wenzelm@7050
   217
wenzelm@7315
   218
\subsection{Term patterns}\label{sec:term-pats}
wenzelm@7050
   219
wenzelm@7895
   220
Assumptions and goal statements usually admit casual binding of schematic term
wenzelm@7981
   221
variables by giving (optional) patterns of the form $\ISS{p@1\;\dots}{p@n}$.
wenzelm@7167
   222
There are separate versions available for \railqtoken{term}s and
wenzelm@7167
   223
\railqtoken{prop}s.  The latter provides a $\CONCLNAME$ part with patterns
wenzelm@7167
   224
referring the (atomic) conclusion of a rule.
wenzelm@7050
   225
wenzelm@7050
   226
\indexouternonterm{termpat}\indexouternonterm{proppat}
wenzelm@7050
   227
\begin{rail}
wenzelm@7167
   228
  termpat: '(' ('is' term +) ')'
wenzelm@7050
   229
  ;
wenzelm@7167
   230
  proppat: '(' (('is' prop +) | 'concl' ('is' prop +) | ('is' prop +) 'concl' ('is' prop +)) ')'
wenzelm@7050
   231
  ;
wenzelm@7050
   232
\end{rail}
wenzelm@7050
   233
wenzelm@7050
   234
wenzelm@7046
   235
\subsection{Mixfix annotations}
wenzelm@7046
   236
wenzelm@7134
   237
Mixfix annotations specify concrete \emph{inner} syntax of Isabelle types and
wenzelm@8548
   238
terms (see also \cite{isabelle-ref}).  Some commands such as $\TYPES$ (see
wenzelm@8548
   239
\S\ref{sec:types-pure}) admit infixes only, while $\CONSTS$ (see
wenzelm@8548
   240
\S\ref{sec:consts}) and $\isarkeyword{syntax}$ (see \S\ref{sec:syn-trans})
wenzelm@8548
   241
support the full range of general mixfixes and binders.
wenzelm@7046
   242
wenzelm@7050
   243
\indexouternonterm{infix}\indexouternonterm{mixfix}
wenzelm@7050
   244
\begin{rail}
wenzelm@7167
   245
  infix: '(' ('infixl' | 'infixr') string? nat ')'
wenzelm@7167
   246
  ;
wenzelm@7175
   247
  mixfix: infix | '(' string prios? nat? ')' | '(' 'binder' string prios? nat ')'
wenzelm@7050
   248
  ;
wenzelm@7046
   249
wenzelm@7175
   250
  prios: '[' (nat + ',') ']'
wenzelm@7050
   251
  ;
wenzelm@7050
   252
\end{rail}
wenzelm@7046
   253
wenzelm@7050
   254
wenzelm@7134
   255
\subsection{Attributes and theorems}\label{sec:syn-att}
wenzelm@7050
   256
wenzelm@7050
   257
Attributes (and proof methods, see \S\ref{sec:syn-meth}) have their own
wenzelm@7335
   258
``semi-inner'' syntax, in the sense that input conforming to
wenzelm@7335
   259
\railnonterm{args} below is parsed by the attribute a second time.  The
wenzelm@7335
   260
attribute argument specifications may be any sequence of atomic entities
wenzelm@7335
   261
(identifiers, strings etc.), or properly bracketed argument lists.  Below
wenzelm@7981
   262
\railqtoken{atom} refers to any atomic entity, including any
wenzelm@7981
   263
\railtoken{keyword} conforming to \railtoken{symident}.
wenzelm@7050
   264
wenzelm@7050
   265
\indexoutertoken{atom}\indexouternonterm{args}\indexouternonterm{attributes}
wenzelm@7050
   266
\begin{rail}
wenzelm@7466
   267
  atom: nameref | typefree | typevar | var | nat | keyword
wenzelm@7050
   268
  ;
wenzelm@8896
   269
  arg: atom | '(' args ')' | '[' args ']'
wenzelm@7134
   270
  ;
wenzelm@7167
   271
  args: arg *
wenzelm@7134
   272
  ;
wenzelm@7167
   273
  attributes: '[' (nameref args * ',') ']'
wenzelm@7050
   274
  ;
wenzelm@7050
   275
\end{rail}
wenzelm@7050
   276
wenzelm@7895
   277
Theorem specifications come in several flavors: \railnonterm{axmdecl} and
wenzelm@7175
   278
\railnonterm{thmdecl} usually refer to axioms, assumptions or results of goal
wenzelm@7981
   279
statements, while \railnonterm{thmdef} collects lists of existing theorems.
wenzelm@7981
   280
Existing theorems are given by \railnonterm{thmref} and \railnonterm{thmrefs},
wenzelm@7981
   281
the former requires an actual singleton result.  Any of these theorem
wenzelm@7175
   282
specifications may include lists of attributes both on the left and right hand
wenzelm@7466
   283
sides; attributes are applied to any immediately preceding theorem.  If names
wenzelm@7981
   284
are omitted, the theorems are not stored within the theorem database of the
wenzelm@7981
   285
theory or proof context; any given attributes are still applied, though.
wenzelm@7050
   286
wenzelm@7135
   287
\indexouternonterm{thmdecl}\indexouternonterm{axmdecl}
wenzelm@7135
   288
\indexouternonterm{thmdef}\indexouternonterm{thmrefs}
wenzelm@7050
   289
\begin{rail}
wenzelm@7167
   290
  axmdecl: name attributes? ':'
wenzelm@7050
   291
  ;
wenzelm@9200
   292
  thmdecl: thmbind ':'
wenzelm@7135
   293
  ;
wenzelm@9200
   294
  thmdef: thmbind '='
wenzelm@7050
   295
  ;
wenzelm@7175
   296
  thmref: nameref attributes?
wenzelm@7175
   297
  ;
wenzelm@7175
   298
  thmrefs: thmref +
wenzelm@7134
   299
  ;
wenzelm@7167
   300
wenzelm@9200
   301
  thmbind: name attributes | name | attributes
wenzelm@7050
   302
  ;
wenzelm@7050
   303
\end{rail}
wenzelm@7050
   304
wenzelm@7050
   305
wenzelm@7050
   306
\subsection{Proof methods}\label{sec:syn-meth}
wenzelm@7050
   307
wenzelm@7050
   308
Proof methods are either basic ones, or expressions composed of methods via
wenzelm@7175
   309
``\texttt{,}'' (sequential composition), ``\texttt{|}'' (alternative choices),
wenzelm@7981
   310
``\texttt{?}'' (try), ``\texttt{+}'' (repeat at least once).  In practice,
wenzelm@7981
   311
proof methods are usually just a comma separated list of
wenzelm@7981
   312
\railqtoken{nameref}~\railnonterm{args} specifications.  Note that parentheses
wenzelm@7981
   313
may be dropped for single method specifications (with no arguments).
wenzelm@7050
   314
wenzelm@7050
   315
\indexouternonterm{method}
wenzelm@7050
   316
\begin{rail}
wenzelm@7430
   317
  method: (nameref | '(' methods ')') (() | '?' | '+')
wenzelm@7134
   318
  ;
wenzelm@7167
   319
  methods: (nameref args | method) + (',' | '|')
wenzelm@7050
   320
  ;
wenzelm@7050
   321
\end{rail}
wenzelm@7046
   322
wenzelm@8532
   323
Proper use of Isar proof methods does \emph{not} involve goal addressing.
wenzelm@8532
   324
Nevertheless, specifying goal ranges may occasionally come in handy in
wenzelm@8532
   325
emulating tactic scripts.  Note that $[n-]$ refers to all goals, starting from
wenzelm@8548
   326
$n$.  All goals may be specified by $[!]$, which is the same as $[1-]$.
wenzelm@8532
   327
wenzelm@8532
   328
\indexouternonterm{goalspec}
wenzelm@8532
   329
\begin{rail}
wenzelm@8548
   330
  goalspec: '[' (nat '-' nat | nat '-' | nat | '!' ) ']'
wenzelm@8532
   331
  ;
wenzelm@8532
   332
\end{rail}
wenzelm@8532
   333
wenzelm@7046
   334
wenzelm@9200
   335
\subsection{Antiquotations}\label{sec:antiq}
wenzelm@9200
   336
wenzelm@9200
   337
The text body of formal comments (see also \S\ref{sec:comments}) may contain
wenzelm@9200
   338
antiquotations of logical entities, such as theorems, terms and types, which
wenzelm@9200
   339
are to be presented in the final output produced by the Isabelle document
wenzelm@9200
   340
preparation system (see also \S\ref{sec:document-prep}).
wenzelm@9200
   341
wenzelm@9601
   342
Thus embedding of
wenzelm@9601
   343
\texttt{{\at}{\ttlbrace}term[show_types]~"f(x)~=~a~+~x"{\ttrbrace}} within a
wenzelm@9601
   344
text block would cause
wenzelm@9200
   345
\isa{(f{\isasymColon}'a~{\isasymRightarrow}~'a)~(x{\isasymColon}'a)~=~(a{\isasymColon}'a)~+~x}
wenzelm@9200
   346
to appear in the final {\LaTeX} document.
wenzelm@9200
   347
wenzelm@9200
   348
Antiquotations do not only spare the author from tedious typing, but also
wenzelm@9200
   349
achieve some degree of consistency-checking of informal explanations with
wenzelm@9200
   350
formal developments, since well-formedness of terms and types with respect to
wenzelm@9752
   351
the current theory or proof context can be ensured.  The $text$ antiquotation
wenzelm@9752
   352
is an exception to this rule: it prints an uninterpreted text argument that is
wenzelm@9752
   353
not checked in any way.
wenzelm@9200
   354
wenzelm@9728
   355
\indexisarant{thm}\indexisarant{prop}\indexisarant{term}
wenzelm@9728
   356
\indexisarant{typ}\indexisarant{name}
wenzelm@9200
   357
\begin{rail}
wenzelm@9200
   358
  atsign lbrace antiquotation rbrace
wenzelm@9200
   359
  ;
wenzelm@9200
   360
wenzelm@9200
   361
  antiquotation:
wenzelm@9200
   362
    'thm' options thmrefs |
wenzelm@9200
   363
    'prop' options prop |
wenzelm@9200
   364
    'term' options term |
wenzelm@9728
   365
    'typ' options type |
wenzelm@9752
   366
    'text' options name
wenzelm@9200
   367
  ;
wenzelm@9200
   368
  options: '[' (option * ',') ']'
wenzelm@9200
   369
  ;
wenzelm@9200
   370
  option: name | name '=' name
wenzelm@9200
   371
  ;
wenzelm@9200
   372
\end{rail}
wenzelm@9200
   373
wenzelm@9200
   374
Note that the syntax of antiquotations may \emph{not} include source comments
wenzelm@9200
   375
\texttt{(*~\dots~*)} or verbatim text \verb|{*|~\dots~\verb|*}|.
wenzelm@9200
   376
wenzelm@9200
   377
\medskip
wenzelm@9200
   378
wenzelm@9233
   379
The following options are available to tune the output.  Note that some of
wenzelm@9233
   380
these coincide with ML flags of the same names (see also \cite{isabelle-ref}).
wenzelm@9200
   381
\begin{descr}
wenzelm@9233
   382
\item[$show_types = bool$ and $show_sorts = bool$] control printing of
wenzelm@9234
   383
  explicit type and sort constraints.
wenzelm@9233
   384
\item[$long_names = bool$] forces names of types and constants etc.\ to be
wenzelm@9233
   385
  printed in their fully qualified internal form.
wenzelm@9233
   386
\item[$eta_contract = bool$] prints terms in $\eta$-contracted form.
wenzelm@9200
   387
\item[$display = bool$] indicates if the text is to be output as multi-line
wenzelm@9200
   388
  ``display material'', rather than a small piece of text without line breaks
wenzelm@9200
   389
  (which is the default).
wenzelm@9200
   390
\item[$quotes = bool$] indicates if the output should be enclosed in double
wenzelm@9200
   391
  quotes.
wenzelm@9233
   392
\item[$mode = name$] adds $name$ to the print mode to be used for presentation
wenzelm@9233
   393
  (see also \cite{isabelle-ref}).  Note that the standard setup for {\LaTeX}
wenzelm@9233
   394
  output is already present by default, including the modes ``$latex$'',
wenzelm@9233
   395
  ``$xsymbols$'', ``$symbols$''.
wenzelm@9728
   396
\item[$margin = nat$ and $indent = nat$] change the margin or indentation for
wenzelm@9728
   397
  pretty printing of display material.
wenzelm@9752
   398
\item[$source = bool$] prints the source text of the antiquotation arguments,
wenzelm@9752
   399
  rather than the actual value.  Note that this does not affect
wenzelm@9752
   400
  well-formedness checks of $thm$, $term$, etc. (only the $text$ antiquotation
wenzelm@9752
   401
  admits arbitrary output).
wenzelm@9200
   402
\end{descr}
wenzelm@9200
   403
wenzelm@9200
   404
For boolean flags, ``$name = true$'' may be abbreviated as ``$name$''.  All of
wenzelm@9200
   405
the above flags are disabled by default, unless changed from ML.
wenzelm@9200
   406
wenzelm@9200
   407
wenzelm@7046
   408
%%% Local Variables: 
wenzelm@7046
   409
%%% mode: latex
wenzelm@7046
   410
%%% TeX-master: "isar-ref"
wenzelm@7046
   411
%%% End: