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