doc-src/TutorialI/Documents/document/Documents.tex
author paulson
Tue, 10 Feb 2004 12:17:04 +0100
changeset 14379 ea10a8c3e9cf
parent 14353 79f9fbef9106
child 14486 74c053a25513
permissions -rw-r--r--
updated links to the old ftp site
wenzelm@11648
     1
%
wenzelm@11648
     2
\begin{isabellebody}%
wenzelm@11648
     3
\def\isabellecontext{Documents}%
wenzelm@11866
     4
\isamarkupfalse%
wenzelm@12627
     5
%
wenzelm@12647
     6
\isamarkupsection{Concrete Syntax \label{sec:concrete-syntax}%
wenzelm@12627
     7
}
wenzelm@12627
     8
\isamarkuptrue%
wenzelm@12627
     9
%
wenzelm@12627
    10
\begin{isamarkuptext}%
wenzelm@12767
    11
The core concept of Isabelle's framework for concrete syntax is that
wenzelm@12767
    12
  of \bfindex{mixfix annotations}.  Associated with any kind of
wenzelm@12767
    13
  constant declaration, mixfixes affect both the grammar productions
wenzelm@12767
    14
  for the parser and output templates for the pretty printer.
wenzelm@12627
    15
wenzelm@12743
    16
  In full generality, parser and pretty printer configuration is a
wenzelm@12767
    17
  subtle affair \cite{isabelle-ref}.  Your syntax specifications need
wenzelm@12767
    18
  to interact properly with the existing setup of Isabelle/Pure and
wenzelm@12767
    19
  Isabelle/HOL\@.  To avoid creating ambiguities with existing
wenzelm@12767
    20
  elements, it is particularly important to give new syntactic
paulson@12764
    21
  constructs the right precedence.
wenzelm@12627
    22
wenzelm@12671
    23
  \medskip Subsequently we introduce a few simple syntax declaration
wenzelm@12743
    24
  forms that already cover many common situations fairly well.%
wenzelm@12627
    25
\end{isamarkuptext}%
wenzelm@12627
    26
\isamarkuptrue%
wenzelm@12627
    27
%
wenzelm@12647
    28
\isamarkupsubsection{Infix Annotations%
wenzelm@12627
    29
}
wenzelm@12627
    30
\isamarkuptrue%
wenzelm@12627
    31
%
wenzelm@12627
    32
\begin{isamarkuptext}%
paulson@12764
    33
Syntax annotations may be included wherever constants are declared,
wenzelm@12767
    34
  such as \isacommand{consts} and \isacommand{constdefs} --- and also
wenzelm@12767
    35
  \isacommand{datatype}, which declares constructor operations.
wenzelm@12767
    36
  Type-constructors may be annotated as well, although this is less
wenzelm@12767
    37
  frequently encountered in practice (the infix type \isa{{\isasymtimes}} comes
wenzelm@12767
    38
  to mind).
wenzelm@12627
    39
wenzelm@12644
    40
  Infix declarations\index{infix annotations} provide a useful special
wenzelm@12767
    41
  case of mixfixes.  The following example of the exclusive-or
wenzelm@12767
    42
  operation on boolean values illustrates typical infix declarations.%
wenzelm@12627
    43
\end{isamarkuptext}%
wenzelm@12627
    44
\isamarkuptrue%
wenzelm@12627
    45
\isacommand{constdefs}\isanewline
wenzelm@12627
    46
\ \ xor\ {\isacharcolon}{\isacharcolon}\ {\isachardoublequote}bool\ {\isasymRightarrow}\ bool\ {\isasymRightarrow}\ bool{\isachardoublequote}\ \ \ \ {\isacharparenleft}\isakeyword{infixl}\ {\isachardoublequote}{\isacharbrackleft}{\isacharplus}{\isacharbrackright}{\isachardoublequote}\ {\isadigit{6}}{\isadigit{0}}{\isacharparenright}\isanewline
wenzelm@12627
    47
\ \ {\isachardoublequote}A\ {\isacharbrackleft}{\isacharplus}{\isacharbrackright}\ B\ {\isasymequiv}\ {\isacharparenleft}A\ {\isasymand}\ {\isasymnot}\ B{\isacharparenright}\ {\isasymor}\ {\isacharparenleft}{\isasymnot}\ A\ {\isasymand}\ B{\isacharparenright}{\isachardoublequote}\isamarkupfalse%
wenzelm@12627
    48
%
wenzelm@12627
    49
\begin{isamarkuptext}%
wenzelm@12652
    50
\noindent Now \isa{xor\ A\ B} and \isa{A\ {\isacharbrackleft}{\isacharplus}{\isacharbrackright}\ B} refer to the
wenzelm@12652
    51
  same expression internally.  Any curried function with at least two
wenzelm@12767
    52
  arguments may be given infix syntax.  For partial applications with
wenzelm@12767
    53
  fewer than two operands, there is a notation using the prefix~\isa{op}.  For instance, \isa{xor} without arguments is represented as
wenzelm@12767
    54
  \isa{op\ {\isacharbrackleft}{\isacharplus}{\isacharbrackright}}; together with ordinary function application, this
wenzelm@12652
    55
  turns \isa{xor\ A} into \isa{op\ {\isacharbrackleft}{\isacharplus}{\isacharbrackright}\ A}.
wenzelm@12627
    56
wenzelm@12747
    57
  \medskip The keyword \isakeyword{infixl} seen above specifies an
wenzelm@12747
    58
  infix operator that is nested to the \emph{left}: in iterated
wenzelm@12747
    59
  applications the more complex expression appears on the left-hand
wenzelm@12767
    60
  side, and \isa{A\ {\isacharbrackleft}{\isacharplus}{\isacharbrackright}\ B\ {\isacharbrackleft}{\isacharplus}{\isacharbrackright}\ C} stands for \isa{{\isacharparenleft}A\ {\isacharbrackleft}{\isacharplus}{\isacharbrackright}\ B{\isacharparenright}\ {\isacharbrackleft}{\isacharplus}{\isacharbrackright}\ C}.  Similarly, \isakeyword{infixr} means nesting to the
wenzelm@12767
    61
  \emph{right}, reading \isa{A\ {\isacharbrackleft}{\isacharplus}{\isacharbrackright}\ B\ {\isacharbrackleft}{\isacharplus}{\isacharbrackright}\ C} as \isa{A\ {\isacharbrackleft}{\isacharplus}{\isacharbrackright}\ {\isacharparenleft}B\ {\isacharbrackleft}{\isacharplus}{\isacharbrackright}\ C{\isacharparenright}}.  A \emph{non-oriented} declaration via \isakeyword{infix}
wenzelm@12767
    62
  would render \isa{A\ {\isacharbrackleft}{\isacharplus}{\isacharbrackright}\ B\ {\isacharbrackleft}{\isacharplus}{\isacharbrackright}\ C} illegal, but demand explicit
wenzelm@12767
    63
  parentheses to indicate the intended grouping.
wenzelm@12743
    64
wenzelm@12747
    65
  The string \isa{{\isachardoublequote}{\isacharbrackleft}{\isacharplus}{\isacharbrackright}{\isachardoublequote}} in our annotation refers to the
wenzelm@12747
    66
  concrete syntax to represent the operator (a literal token), while
paulson@12764
    67
  the number \isa{{\isadigit{6}}{\isadigit{0}}} determines the precedence of the construct:
wenzelm@12767
    68
  the syntactic priorities of the arguments and result.  Isabelle/HOL
wenzelm@12767
    69
  already uses up many popular combinations of ASCII symbols for its
wenzelm@12767
    70
  own use, including both \isa{{\isacharplus}} and \isa{{\isacharplus}{\isacharplus}}.  Longer
wenzelm@12767
    71
  character combinations are more likely to be still available for
wenzelm@12767
    72
  user extensions, such as our~\isa{{\isacharbrackleft}{\isacharplus}{\isacharbrackright}}.
wenzelm@12627
    73
wenzelm@12767
    74
  Operator precedences have a range of 0--1000.  Very low or high
wenzelm@12767
    75
  priorities are reserved for the meta-logic.  HOL syntax mainly uses
wenzelm@12767
    76
  the range of 10--100: the equality infix \isa{{\isacharequal}} is centered at
wenzelm@12767
    77
  50; logical connectives (like \isa{{\isasymor}} and \isa{{\isasymand}}) are
wenzelm@12767
    78
  below 50; algebraic ones (like \isa{{\isacharplus}} and \isa{{\isacharasterisk}}) are
wenzelm@12767
    79
  above 50.  User syntax should strive to coexist with common HOL
wenzelm@12767
    80
  forms, or use the mostly unused range 100--900.%
wenzelm@12627
    81
\end{isamarkuptext}%
wenzelm@12627
    82
\isamarkuptrue%
wenzelm@12635
    83
%
wenzelm@12658
    84
\isamarkupsubsection{Mathematical Symbols \label{sec:syntax-symbols}%
wenzelm@12635
    85
}
wenzelm@12627
    86
\isamarkuptrue%
wenzelm@12635
    87
%
wenzelm@12635
    88
\begin{isamarkuptext}%
wenzelm@12767
    89
Concrete syntax based on ASCII characters has inherent limitations.
wenzelm@12767
    90
  Mathematical notation demands a larger repertoire of glyphs.
wenzelm@12767
    91
  Several standards of extended character sets have been proposed over
wenzelm@12767
    92
  decades, but none has become universally available so far.  Isabelle
wenzelm@12767
    93
  has its own notion of \bfindex{symbols} as the smallest entities of
wenzelm@12767
    94
  source text, without referring to internal encodings.  There are
wenzelm@12767
    95
  three kinds of such ``generalized characters'':
wenzelm@12635
    96
wenzelm@12635
    97
  \begin{enumerate}
wenzelm@12635
    98
wenzelm@12652
    99
  \item 7-bit ASCII characters
wenzelm@12635
   100
wenzelm@12652
   101
  \item named symbols: \verb,\,\verb,<,$ident$\verb,>,
wenzelm@12635
   102
wenzelm@12652
   103
  \item named control symbols: \verb,\,\verb,<^,$ident$\verb,>,
wenzelm@12635
   104
wenzelm@12635
   105
  \end{enumerate}
wenzelm@12635
   106
wenzelm@12635
   107
  Here $ident$ may be any identifier according to the usual Isabelle
wenzelm@12635
   108
  conventions.  This results in an infinite store of symbols, whose
wenzelm@12767
   109
  interpretation is left to further front-end tools.  For example, the
wenzelm@12767
   110
  user-interface of Proof~General + X-Symbol and the Isabelle document
wenzelm@12767
   111
  processor (see \S\ref{sec:document-preparation}) display the
wenzelm@12767
   112
  \verb,\,\verb,<forall>, symbol as~\isa{{\isasymforall}}.
wenzelm@12635
   113
wenzelm@12635
   114
  A list of standard Isabelle symbols is given in
wenzelm@12767
   115
  \cite[appendix~A]{isabelle-sys}.  You may introduce your own
wenzelm@12635
   116
  interpretation of further symbols by configuring the appropriate
wenzelm@12652
   117
  front-end tool accordingly, e.g.\ by defining certain {\LaTeX}
wenzelm@12652
   118
  macros (see also \S\ref{sec:doc-prep-symbols}).  There are also a
wenzelm@12652
   119
  few predefined control symbols, such as \verb,\,\verb,<^sub>, and
wenzelm@12635
   120
  \verb,\,\verb,<^sup>, for sub- and superscript of the subsequent
paulson@12764
   121
  printable symbol, respectively.  For example, \verb,A\<^sup>\<star>, is
wenzelm@12671
   122
  output as \isa{A\isactrlsup {\isasymstar}}.
wenzelm@12635
   123
wenzelm@12767
   124
  \medskip Replacing our definition of \isa{xor} by the following
nipkow@13439
   125
  specifies an Isabelle symbol for the new operator:%
wenzelm@12635
   126
\end{isamarkuptext}%
wenzelm@12627
   127
\isamarkuptrue%
wenzelm@12627
   128
\isamarkupfalse%
wenzelm@12627
   129
\isamarkupfalse%
wenzelm@12635
   130
\isacommand{constdefs}\isanewline
wenzelm@12635
   131
\ \ xor\ {\isacharcolon}{\isacharcolon}\ {\isachardoublequote}bool\ {\isasymRightarrow}\ bool\ {\isasymRightarrow}\ bool{\isachardoublequote}\ \ \ \ {\isacharparenleft}\isakeyword{infixl}\ {\isachardoublequote}{\isasymoplus}{\isachardoublequote}\ {\isadigit{6}}{\isadigit{0}}{\isacharparenright}\isanewline
nipkow@13791
   132
\ \ {\isachardoublequote}A\ {\isasymoplus}\ B\ {\isasymequiv}\ {\isacharparenleft}A\ {\isasymand}\ {\isasymnot}\ B{\isacharparenright}\ {\isasymor}\ {\isacharparenleft}{\isasymnot}\ A\ {\isasymand}\ B{\isacharparenright}{\isachardoublequote}\isamarkupfalse%
wenzelm@12627
   133
\isamarkupfalse%
wenzelm@12635
   134
%
wenzelm@12635
   135
\begin{isamarkuptext}%
wenzelm@12652
   136
\noindent The X-Symbol package within Proof~General provides several
wenzelm@12652
   137
  input methods to enter \isa{{\isasymoplus}} in the text.  If all fails one may
wenzelm@12767
   138
  just type a named entity \verb,\,\verb,<oplus>, by hand; the
wenzelm@12767
   139
  corresponding symbol will be displayed after further input.
wenzelm@12635
   140
wenzelm@12767
   141
  \medskip More flexible is to provide alternative syntax forms
wenzelm@12767
   142
  through the \bfindex{print mode} concept~\cite{isabelle-ref}.  By
wenzelm@12767
   143
  convention, the mode of ``$xsymbols$'' is enabled whenever
wenzelm@12767
   144
  Proof~General's X-Symbol mode or {\LaTeX} output is active.  Now
wenzelm@12767
   145
  consider the following hybrid declaration of \isa{xor}:%
wenzelm@12635
   146
\end{isamarkuptext}%
wenzelm@12627
   147
\isamarkuptrue%
wenzelm@12627
   148
\isamarkupfalse%
wenzelm@12635
   149
\isamarkupfalse%
wenzelm@12635
   150
\isacommand{constdefs}\isanewline
wenzelm@12635
   151
\ \ xor\ {\isacharcolon}{\isacharcolon}\ {\isachardoublequote}bool\ {\isasymRightarrow}\ bool\ {\isasymRightarrow}\ bool{\isachardoublequote}\ \ \ \ {\isacharparenleft}\isakeyword{infixl}\ {\isachardoublequote}{\isacharbrackleft}{\isacharplus}{\isacharbrackright}{\isasymignore}{\isachardoublequote}\ {\isadigit{6}}{\isadigit{0}}{\isacharparenright}\isanewline
wenzelm@12635
   152
\ \ {\isachardoublequote}A\ {\isacharbrackleft}{\isacharplus}{\isacharbrackright}{\isasymignore}\ B\ {\isasymequiv}\ {\isacharparenleft}A\ {\isasymand}\ {\isasymnot}\ B{\isacharparenright}\ {\isasymor}\ {\isacharparenleft}{\isasymnot}\ A\ {\isasymand}\ B{\isacharparenright}{\isachardoublequote}\isanewline
wenzelm@12635
   153
\isanewline
wenzelm@12635
   154
\isamarkupfalse%
wenzelm@12635
   155
\isacommand{syntax}\ {\isacharparenleft}xsymbols{\isacharparenright}\isanewline
nipkow@13791
   156
\ \ xor\ {\isacharcolon}{\isacharcolon}\ {\isachardoublequote}bool\ {\isasymRightarrow}\ bool\ {\isasymRightarrow}\ bool{\isachardoublequote}\ \ \ \ {\isacharparenleft}\isakeyword{infixl}\ {\isachardoublequote}{\isasymoplus}{\isasymignore}{\isachardoublequote}\ {\isadigit{6}}{\isadigit{0}}{\isacharparenright}\isamarkupfalse%
wenzelm@12635
   157
\isamarkupfalse%
wenzelm@12635
   158
%
wenzelm@12635
   159
\begin{isamarkuptext}%
wenzelm@12652
   160
The \commdx{syntax} command introduced here acts like
wenzelm@12743
   161
  \isakeyword{consts}, but without declaring a logical constant.  The
wenzelm@12747
   162
  print mode specification of \isakeyword{syntax}, here \isa{{\isacharparenleft}xsymbols{\isacharparenright}}, is optional.  Also note that its type merely serves
wenzelm@12747
   163
  for syntactic purposes, and is \emph{not} checked for consistency
wenzelm@12747
   164
  with the real constant.
wenzelm@12635
   165
wenzelm@12672
   166
  \medskip We may now write \isa{A\ {\isacharbrackleft}{\isacharplus}{\isacharbrackright}\ B} or \isa{A\ {\isasymoplus}\ B} in
wenzelm@12767
   167
  input, while output uses the nicer syntax of $xsymbols$ whenever
wenzelm@12672
   168
  that print mode is active.  Such an arrangement is particularly
wenzelm@12767
   169
  useful for interactive development, where users may type ASCII text
wenzelm@12767
   170
  and see mathematical symbols displayed during proofs.%
wenzelm@12635
   171
\end{isamarkuptext}%
wenzelm@12627
   172
\isamarkuptrue%
wenzelm@12635
   173
%
wenzelm@12647
   174
\isamarkupsubsection{Prefix Annotations%
wenzelm@12635
   175
}
wenzelm@12627
   176
\isamarkuptrue%
wenzelm@12635
   177
%
wenzelm@12635
   178
\begin{isamarkuptext}%
wenzelm@12767
   179
Prefix syntax annotations\index{prefix annotation} are another form
wenzelm@12767
   180
  of mixfixes \cite{isabelle-ref}, without any template arguments or
wenzelm@12767
   181
  priorities --- just some literal syntax.  The following example
wenzelm@12767
   182
  associates common symbols with the constructors of a datatype.%
wenzelm@12635
   183
\end{isamarkuptext}%
wenzelm@12627
   184
\isamarkuptrue%
wenzelm@12635
   185
\isacommand{datatype}\ currency\ {\isacharequal}\isanewline
wenzelm@12635
   186
\ \ \ \ Euro\ nat\ \ \ \ {\isacharparenleft}{\isachardoublequote}{\isasymeuro}{\isachardoublequote}{\isacharparenright}\isanewline
wenzelm@12635
   187
\ \ {\isacharbar}\ Pounds\ nat\ \ {\isacharparenleft}{\isachardoublequote}{\isasympounds}{\isachardoublequote}{\isacharparenright}\isanewline
wenzelm@12635
   188
\ \ {\isacharbar}\ Yen\ nat\ \ \ \ \ {\isacharparenleft}{\isachardoublequote}{\isasymyen}{\isachardoublequote}{\isacharparenright}\isanewline
wenzelm@12635
   189
\ \ {\isacharbar}\ Dollar\ nat\ \ {\isacharparenleft}{\isachardoublequote}{\isachardollar}{\isachardoublequote}{\isacharparenright}\isamarkupfalse%
wenzelm@12635
   190
%
wenzelm@12635
   191
\begin{isamarkuptext}%
wenzelm@12652
   192
\noindent Here the mixfix annotations on the rightmost column happen
wenzelm@12652
   193
  to consist of a single Isabelle symbol each: \verb,\,\verb,<euro>,,
wenzelm@12652
   194
  \verb,\,\verb,<pounds>,, \verb,\,\verb,<yen>,, and \verb,$,.  Recall
wenzelm@12747
   195
  that a constructor like \isa{Euro} actually is a function \isa{nat\ {\isasymRightarrow}\ currency}.  The expression \isa{Euro\ {\isadigit{1}}{\isadigit{0}}} will be
wenzelm@12652
   196
  printed as \isa{{\isasymeuro}\ {\isadigit{1}}{\isadigit{0}}}; only the head of the application is
wenzelm@12743
   197
  subject to our concrete syntax.  This rather simple form already
wenzelm@12743
   198
  achieves conformance with notational standards of the European
wenzelm@12743
   199
  Commission.
wenzelm@12635
   200
wenzelm@12767
   201
  Prefix syntax works the same way for \isakeyword{consts} or
paulson@12764
   202
  \isakeyword{constdefs}.%
wenzelm@12649
   203
\end{isamarkuptext}%
wenzelm@12649
   204
\isamarkuptrue%
wenzelm@12649
   205
%
wenzelm@12649
   206
\isamarkupsubsection{Syntax Translations \label{sec:syntax-translations}%
wenzelm@12635
   207
}
wenzelm@12627
   208
\isamarkuptrue%
wenzelm@12635
   209
%
wenzelm@12635
   210
\begin{isamarkuptext}%
wenzelm@12767
   211
Mixfix syntax annotations merely decorate particular constant
wenzelm@12767
   212
  application forms with concrete syntax, for instance replacing \
wenzelm@12767
   213
  \isa{xor\ A\ B} by \isa{A\ {\isasymoplus}\ B}.  Occasionally, the
wenzelm@12767
   214
  relationship between some piece of notation and its internal form is
wenzelm@12767
   215
  more complicated.  Here we need \bfindex{syntax translations}.
wenzelm@12635
   216
paulson@12764
   217
  Using the \isakeyword{syntax}\index{syntax (command)}, command we
paulson@12764
   218
  introduce uninterpreted notational elements.  Then
paulson@12764
   219
  \commdx{translations} relate input forms to complex logical
wenzelm@12767
   220
  expressions.  This provides a simple mechanism for syntactic macros;
wenzelm@12767
   221
  even heavier transformations may be written in ML
wenzelm@12671
   222
  \cite{isabelle-ref}.
wenzelm@12649
   223
paulson@12764
   224
  \medskip A typical use of syntax translations is to introduce
wenzelm@12767
   225
  relational notation for membership in a set of pair, replacing \
wenzelm@12767
   226
  \isa{{\isacharparenleft}x{\isacharcomma}\ y{\isacharparenright}\ {\isasymin}\ sim} by \isa{x\ {\isasymapprox}\ y}.%
wenzelm@12635
   227
\end{isamarkuptext}%
wenzelm@12627
   228
\isamarkuptrue%
wenzelm@12649
   229
\isacommand{consts}\isanewline
wenzelm@12649
   230
\ \ sim\ {\isacharcolon}{\isacharcolon}\ {\isachardoublequote}{\isacharparenleft}{\isacharprime}a\ {\isasymtimes}\ {\isacharprime}a{\isacharparenright}\ set{\isachardoublequote}\isanewline
wenzelm@12649
   231
\isanewline
wenzelm@12649
   232
\isamarkupfalse%
wenzelm@12649
   233
\isacommand{syntax}\isanewline
wenzelm@12649
   234
\ \ {\isachardoublequote}{\isacharunderscore}sim{\isachardoublequote}\ {\isacharcolon}{\isacharcolon}\ {\isachardoublequote}{\isacharprime}a\ {\isasymRightarrow}\ {\isacharprime}a\ {\isasymRightarrow}\ bool{\isachardoublequote}\ \ \ \ {\isacharparenleft}\isakeyword{infix}\ {\isachardoublequote}{\isasymapprox}{\isachardoublequote}\ {\isadigit{5}}{\isadigit{0}}{\isacharparenright}\isanewline
wenzelm@12649
   235
\isamarkupfalse%
wenzelm@12649
   236
\isacommand{translations}\isanewline
wenzelm@12649
   237
\ \ {\isachardoublequote}x\ {\isasymapprox}\ y{\isachardoublequote}\ {\isasymrightleftharpoons}\ {\isachardoublequote}{\isacharparenleft}x{\isacharcomma}\ y{\isacharparenright}\ {\isasymin}\ sim{\isachardoublequote}\isamarkupfalse%
wenzelm@12635
   238
%
wenzelm@12635
   239
\begin{isamarkuptext}%
wenzelm@12649
   240
\noindent Here the name of the dummy constant \isa{{\isacharunderscore}sim} does
wenzelm@12767
   241
  not matter, as long as it is not used elsewhere.  Prefixing an
wenzelm@12767
   242
  underscore is a common convention.  The \isakeyword{translations}
wenzelm@12649
   243
  declaration already uses concrete syntax on the left-hand side;
wenzelm@12649
   244
  internally we relate a raw application \isa{{\isacharunderscore}sim\ x\ y} with
wenzelm@12649
   245
  \isa{{\isacharparenleft}x{\isacharcomma}\ y{\isacharparenright}\ {\isasymin}\ sim}.
wenzelm@12635
   246
wenzelm@12652
   247
  \medskip Another common application of syntax translations is to
wenzelm@12649
   248
  provide variant versions of fundamental relational expressions, such
wenzelm@12649
   249
  as \isa{{\isasymnoteq}} for negated equalities.  The following declaration
wenzelm@12649
   250
  stems from Isabelle/HOL itself:%
wenzelm@12649
   251
\end{isamarkuptext}%
wenzelm@12649
   252
\isamarkuptrue%
wenzelm@12649
   253
\isacommand{syntax}\ {\isachardoublequote}{\isacharunderscore}not{\isacharunderscore}equal{\isachardoublequote}\ {\isacharcolon}{\isacharcolon}\ {\isachardoublequote}{\isacharprime}a\ {\isasymRightarrow}\ {\isacharprime}a\ {\isasymRightarrow}\ bool{\isachardoublequote}\ \ \ \ {\isacharparenleft}\isakeyword{infixl}\ {\isachardoublequote}{\isasymnoteq}{\isasymignore}{\isachardoublequote}\ {\isadigit{5}}{\isadigit{0}}{\isacharparenright}\isanewline
wenzelm@12649
   254
\isamarkupfalse%
wenzelm@12649
   255
\isacommand{translations}\ {\isachardoublequote}x\ {\isasymnoteq}{\isasymignore}\ y{\isachardoublequote}\ {\isasymrightleftharpoons}\ {\isachardoublequote}{\isasymnot}\ {\isacharparenleft}x\ {\isacharequal}\ y{\isacharparenright}{\isachardoublequote}\isamarkupfalse%
wenzelm@12649
   256
%
wenzelm@12649
   257
\begin{isamarkuptext}%
wenzelm@12649
   258
\noindent Normally one would introduce derived concepts like this
wenzelm@12652
   259
  within the logic, using \isakeyword{consts} + \isakeyword{defs}
wenzelm@12652
   260
  instead of \isakeyword{syntax} + \isakeyword{translations}.  The
wenzelm@12649
   261
  present formulation has the virtue that expressions are immediately
wenzelm@12666
   262
  replaced by the ``definition'' upon parsing; the effect is reversed
wenzelm@12666
   263
  upon printing.
wenzelm@12649
   264
wenzelm@12767
   265
  This sort of translation is appropriate when the defined concept is
wenzelm@12767
   266
  a trivial variation on an existing one.  On the other hand, syntax
wenzelm@12767
   267
  translations do not scale up well to large hierarchies of concepts.
wenzelm@12767
   268
  Translations do not replace definitions!%
wenzelm@12635
   269
\end{isamarkuptext}%
wenzelm@12627
   270
\isamarkuptrue%
wenzelm@12635
   271
%
wenzelm@12652
   272
\isamarkupsection{Document Preparation \label{sec:document-preparation}%
wenzelm@12635
   273
}
wenzelm@12627
   274
\isamarkuptrue%
wenzelm@12635
   275
%
wenzelm@12644
   276
\begin{isamarkuptext}%
wenzelm@12652
   277
Isabelle/Isar is centered around the concept of \bfindex{formal
wenzelm@12767
   278
  proof documents}\index{documents|bold}.  The outcome of a formal
wenzelm@12767
   279
  development effort is meant to be a human-readable record, presented
wenzelm@12767
   280
  as browsable PDF file or printed on paper.  The overall document
wenzelm@12767
   281
  structure follows traditional mathematical articles, with sections,
wenzelm@12767
   282
  intermediate explanations, definitions, theorems and proofs.
wenzelm@12644
   283
wenzelm@12644
   284
  \medskip The Isabelle document preparation system essentially acts
wenzelm@12671
   285
  as a front-end to {\LaTeX}.  After checking specifications and
wenzelm@12671
   286
  proofs formally, the theory sources are turned into typesetting
wenzelm@12767
   287
  instructions in a schematic manner.  This lets you write authentic
wenzelm@12767
   288
  reports on theory developments with little effort: many technical
wenzelm@12767
   289
  consistency checks are handled by the system.
wenzelm@12745
   290
wenzelm@12745
   291
  Here is an example to illustrate the idea of Isabelle document
wenzelm@12747
   292
  preparation.%
wenzelm@12747
   293
\end{isamarkuptext}%
wenzelm@12747
   294
\isamarkuptrue%
wenzelm@12747
   295
%
wenzelm@12747
   296
\begin{quotation}
wenzelm@12747
   297
%
wenzelm@12747
   298
\begin{isamarkuptext}%
wenzelm@12747
   299
The following datatype definition of \isa{{\isacharprime}a\ bintree} models
wenzelm@12747
   300
  binary trees with nodes being decorated by elements of type \isa{{\isacharprime}a}.%
wenzelm@12745
   301
\end{isamarkuptext}%
wenzelm@12745
   302
\isamarkuptrue%
wenzelm@12745
   303
\isacommand{datatype}\ {\isacharprime}a\ bintree\ {\isacharequal}\isanewline
wenzelm@12747
   304
\ \ \ \ \ Leaf\ {\isacharbar}\ Branch\ {\isacharprime}a\ \ {\isachardoublequote}{\isacharprime}a\ bintree{\isachardoublequote}\ \ {\isachardoublequote}{\isacharprime}a\ bintree{\isachardoublequote}\isamarkupfalse%
wenzelm@12745
   305
%
wenzelm@12745
   306
\begin{isamarkuptext}%
wenzelm@12745
   307
\noindent The datatype induction rule generated here is of the form
wenzelm@12745
   308
  \begin{isabelle}%
wenzelm@12749
   309
\ {\isasymlbrakk}P\ Leaf{\isacharsemicolon}\isanewline
paulson@14379
   310
\isaindent{\ \ }{\isasymAnd}a\ bintree{\isadigit{1}}\ bintree{\isadigit{2}}{\isachardot}\isanewline
paulson@14379
   311
\isaindent{\ \ \ \ \ }{\isasymlbrakk}P\ bintree{\isadigit{1}}{\isacharsemicolon}\ P\ bintree{\isadigit{2}}{\isasymrbrakk}\ {\isasymLongrightarrow}\ P\ {\isacharparenleft}Branch\ a\ bintree{\isadigit{1}}\ bintree{\isadigit{2}}{\isacharparenright}{\isasymrbrakk}\isanewline
wenzelm@12749
   312
\isaindent{\ }{\isasymLongrightarrow}\ P\ bintree%
wenzelm@12747
   313
\end{isabelle}%
wenzelm@12747
   314
\end{isamarkuptext}%
wenzelm@12747
   315
\isamarkuptrue%
wenzelm@12747
   316
%
wenzelm@12747
   317
\end{quotation}
wenzelm@12747
   318
%
wenzelm@12747
   319
\begin{isamarkuptext}%
wenzelm@12767
   320
\noindent The above document output has been produced as follows:
wenzelm@12745
   321
wenzelm@12745
   322
  \begin{ttbox}
wenzelm@12745
   323
  text {\ttlbrace}*
wenzelm@12745
   324
    The following datatype definition of {\at}{\ttlbrace}text "'a bintree"{\ttrbrace}
wenzelm@12745
   325
    models binary trees with nodes being decorated by elements
wenzelm@12745
   326
    of type {\at}{\ttlbrace}typ 'a{\ttrbrace}.
wenzelm@12745
   327
  *{\ttrbrace}
wenzelm@12745
   328
wenzelm@12745
   329
  datatype 'a bintree =
wenzelm@12745
   330
    Leaf | Branch 'a  "'a bintree"  "'a bintree"
wenzelm@12767
   331
  \end{ttbox}
wenzelm@12767
   332
  \begin{ttbox}
wenzelm@12745
   333
  text {\ttlbrace}*
wenzelm@12745
   334
    {\ttback}noindent The datatype induction rule generated here is
wenzelm@12745
   335
    of the form {\at}{\ttlbrace}thm [display] bintree.induct [no_vars]{\ttrbrace}
wenzelm@12745
   336
  *{\ttrbrace}
wenzelm@12767
   337
  \end{ttbox}\vspace{-\medskipamount}
wenzelm@12745
   338
wenzelm@12747
   339
  \noindent Here we have augmented the theory by formal comments
wenzelm@12767
   340
  (using \isakeyword{text} blocks), the informal parts may again refer
wenzelm@12767
   341
  to formal entities by means of ``antiquotations'' (such as
wenzelm@12745
   342
  \texttt{\at}\verb,{text "'a bintree"}, or
wenzelm@12747
   343
  \texttt{\at}\verb,{typ 'a},), see also \S\ref{sec:doc-prep-text}.%
wenzelm@12644
   344
\end{isamarkuptext}%
wenzelm@12635
   345
\isamarkuptrue%
wenzelm@12635
   346
%
wenzelm@12647
   347
\isamarkupsubsection{Isabelle Sessions%
wenzelm@12635
   348
}
wenzelm@12635
   349
\isamarkuptrue%
wenzelm@12635
   350
%
wenzelm@12635
   351
\begin{isamarkuptext}%
wenzelm@12652
   352
In contrast to the highly interactive mode of Isabelle/Isar theory
wenzelm@12652
   353
  development, the document preparation stage essentially works in
wenzelm@12671
   354
  batch-mode.  An Isabelle \bfindex{session} consists of a collection
wenzelm@12767
   355
  of source files that may contribute to an output document.  Each
wenzelm@12767
   356
  session is derived from a single parent, usually an object-logic
wenzelm@12767
   357
  image like \texttt{HOL}.  This results in an overall tree structure,
wenzelm@12767
   358
  which is reflected by the output location in the file system
wenzelm@12767
   359
  (usually rooted at \verb,~/isabelle/browser_info,).
wenzelm@12644
   360
wenzelm@12684
   361
  \medskip The easiest way to manage Isabelle sessions is via
wenzelm@12686
   362
  \texttt{isatool mkdir} (generates an initial session source setup)
wenzelm@12686
   363
  and \texttt{isatool make} (run sessions controlled by
wenzelm@12684
   364
  \texttt{IsaMakefile}).  For example, a new session
wenzelm@12684
   365
  \texttt{MySession} derived from \texttt{HOL} may be produced as
wenzelm@12684
   366
  follows:
wenzelm@12684
   367
wenzelm@12684
   368
\begin{verbatim}
wenzelm@12684
   369
  isatool mkdir HOL MySession
wenzelm@12684
   370
  isatool make
wenzelm@12684
   371
\end{verbatim}
wenzelm@12684
   372
wenzelm@12686
   373
  The \texttt{isatool make} job also informs about the file-system
wenzelm@12686
   374
  location of the ultimate results.  The above dry run should be able
wenzelm@12686
   375
  to produce some \texttt{document.pdf} (with dummy title, empty table
wenzelm@12743
   376
  of contents etc.).  Any failure at this stage usually indicates
wenzelm@12686
   377
  technical problems of the {\LaTeX} installation.\footnote{Especially
wenzelm@12767
   378
  make sure that \texttt{pdflatex} is present; if in doubt one may
wenzelm@12686
   379
  fall back on DVI output by changing \texttt{usedir} options in
wenzelm@12686
   380
  \texttt{IsaMakefile} \cite{isabelle-sys}.}
wenzelm@12684
   381
wenzelm@12684
   382
  \medskip The detailed arrangement of the session sources is as
wenzelm@12747
   383
  follows.
wenzelm@12644
   384
wenzelm@12644
   385
  \begin{itemize}
wenzelm@12644
   386
wenzelm@12671
   387
  \item Directory \texttt{MySession} holds the required theory files
wenzelm@12671
   388
  $T@1$\texttt{.thy}, \dots, $T@n$\texttt{.thy}.
wenzelm@12644
   389
wenzelm@12644
   390
  \item File \texttt{MySession/ROOT.ML} holds appropriate ML commands
wenzelm@12644
   391
  for loading all wanted theories, usually just
wenzelm@12666
   392
  ``\texttt{use_thy"$T@i$";}'' for any $T@i$ in leaf position of the
wenzelm@12671
   393
  dependency graph.
wenzelm@12644
   394
wenzelm@12644
   395
  \item Directory \texttt{MySession/document} contains everything
wenzelm@12652
   396
  required for the {\LaTeX} stage; only \texttt{root.tex} needs to be
wenzelm@12652
   397
  provided initially.
wenzelm@12644
   398
wenzelm@12652
   399
  The latter file holds appropriate {\LaTeX} code to commence a
wenzelm@12652
   400
  document (\verb,\documentclass, etc.), and to include the generated
wenzelm@12743
   401
  files $T@i$\texttt{.tex} for each theory.  Isabelle will generate a
wenzelm@12743
   402
  file \texttt{session.tex} holding {\LaTeX} commands to include all
wenzelm@12747
   403
  generated theory output files in topologically sorted order, so
wenzelm@12747
   404
  \verb,\input{session}, in the body of \texttt{root.tex} does the job
wenzelm@12747
   405
  in most situations.
wenzelm@12652
   406
wenzelm@12682
   407
  \item \texttt{IsaMakefile} holds appropriate dependencies and
wenzelm@12682
   408
  invocations of Isabelle tools to control the batch job.  In fact,
wenzelm@12747
   409
  several sessions may be managed by the same \texttt{IsaMakefile}.
paulson@12764
   410
  See the \emph{Isabelle System Manual} \cite{isabelle-sys} 
paulson@12764
   411
  for further details, especially on
wenzelm@12652
   412
  \texttt{isatool usedir} and \texttt{isatool make}.
wenzelm@12644
   413
wenzelm@12644
   414
  \end{itemize}
wenzelm@12644
   415
wenzelm@12686
   416
  One may now start to populate the directory \texttt{MySession}, and
wenzelm@12767
   417
  the file \texttt{MySession/ROOT.ML} accordingly.  The file
wenzelm@12767
   418
  \texttt{MySession/document/root.tex} should also be adapted at some
wenzelm@12686
   419
  point; the default version is mostly self-explanatory.  Note that
wenzelm@12686
   420
  \verb,\isabellestyle, enables fine-tuning of the general appearance
wenzelm@12686
   421
  of characters and mathematical symbols (see also
wenzelm@12686
   422
  \S\ref{sec:doc-prep-symbols}).
wenzelm@12644
   423
wenzelm@12686
   424
  Especially observe the included {\LaTeX} packages \texttt{isabelle}
wenzelm@12686
   425
  (mandatory), \texttt{isabellesym} (required for mathematical
wenzelm@12743
   426
  symbols), and the final \texttt{pdfsetup} (provides sane defaults
paulson@12764
   427
  for \texttt{hyperref}, including URL markup).  All three are
wenzelm@12743
   428
  distributed with Isabelle. Further packages may be required in
paulson@12764
   429
  particular applications, say for unusual mathematical symbols.
wenzelm@12644
   430
wenzelm@12747
   431
  \medskip Any additional files for the {\LaTeX} stage go into the
wenzelm@12747
   432
  \texttt{MySession/document} directory as well.  In particular,
wenzelm@12767
   433
  adding a file named \texttt{root.bib} causes an automatic run of
wenzelm@12767
   434
  \texttt{bibtex} to process a bibliographic database; see also
wenzelm@12767
   435
  \texttt{isatool document} \cite{isabelle-sys}.
wenzelm@12652
   436
wenzelm@12652
   437
  \medskip Any failure of the document preparation phase in an
wenzelm@12671
   438
  Isabelle batch session leaves the generated sources in their target
wenzelm@12767
   439
  location, identified by the accompanying error message.  This lets
wenzelm@12767
   440
  you trace {\LaTeX} problems with the generated files at hand.%
wenzelm@12644
   441
\end{isamarkuptext}%
wenzelm@12644
   442
\isamarkuptrue%
wenzelm@12644
   443
%
wenzelm@12647
   444
\isamarkupsubsection{Structure Markup%
wenzelm@12644
   445
}
wenzelm@12644
   446
\isamarkuptrue%
wenzelm@12644
   447
%
wenzelm@12644
   448
\begin{isamarkuptext}%
wenzelm@12652
   449
The large-scale structure of Isabelle documents follows existing
wenzelm@12652
   450
  {\LaTeX} conventions, with chapters, sections, subsubsections etc.
wenzelm@12652
   451
  The Isar language includes separate \bfindex{markup commands}, which
wenzelm@12682
   452
  do not affect the formal meaning of a theory (or proof), but result
wenzelm@12666
   453
  in corresponding {\LaTeX} elements.
wenzelm@12644
   454
wenzelm@12666
   455
  There are separate markup commands depending on the textual context:
wenzelm@12666
   456
  in header position (just before \isakeyword{theory}), within the
wenzelm@12666
   457
  theory body, or within a proof.  The header needs to be treated
wenzelm@12666
   458
  specially here, since ordinary theory and proof commands may only
wenzelm@12666
   459
  occur \emph{after} the initial \isakeyword{theory} specification.
wenzelm@12644
   460
wenzelm@12666
   461
  \medskip
wenzelm@12644
   462
wenzelm@12644
   463
  \begin{tabular}{llll}
wenzelm@12644
   464
  header & theory & proof & default meaning \\\hline
wenzelm@12644
   465
    & \commdx{chapter} & & \verb,\chapter, \\
wenzelm@12644
   466
  \commdx{header} & \commdx{section} & \commdx{sect} & \verb,\section, \\
wenzelm@12644
   467
    & \commdx{subsection} & \commdx{subsect} & \verb,\subsection, \\
wenzelm@12644
   468
    & \commdx{subsubsection} & \commdx{subsubsect} & \verb,\subsubsection, \\
wenzelm@12644
   469
  \end{tabular}
wenzelm@12644
   470
wenzelm@12644
   471
  \medskip
wenzelm@12644
   472
wenzelm@12644
   473
  From the Isabelle perspective, each markup command takes a single
wenzelm@12747
   474
  $text$ argument (delimited by \verb,",~\isa{{\isasymdots}}~\verb,", or
wenzelm@12747
   475
  \verb,{,\verb,*,~\isa{{\isasymdots}}~\verb,*,\verb,},).  After stripping any
wenzelm@12644
   476
  surrounding white space, the argument is passed to a {\LaTeX} macro
wenzelm@12767
   477
  \verb,\isamarkupXYZ, for command \isakeyword{XYZ}.  These macros are
wenzelm@12767
   478
  defined in \verb,isabelle.sty, according to the meaning given in the
wenzelm@12767
   479
  rightmost column above.
wenzelm@12644
   480
wenzelm@12644
   481
  \medskip The following source fragment illustrates structure markup
wenzelm@12652
   482
  of a theory.  Note that {\LaTeX} labels may be included inside of
wenzelm@12652
   483
  section headings as well.
wenzelm@12644
   484
wenzelm@12644
   485
  \begin{ttbox}
wenzelm@12644
   486
  header {\ttlbrace}* Some properties of Foo Bar elements *{\ttrbrace}
wenzelm@12644
   487
wenzelm@12644
   488
  theory Foo_Bar = Main:
wenzelm@12644
   489
wenzelm@12644
   490
  subsection {\ttlbrace}* Basic definitions *{\ttrbrace}
wenzelm@12644
   491
wenzelm@12644
   492
  consts
wenzelm@12644
   493
    foo :: \dots
wenzelm@12644
   494
    bar :: \dots
wenzelm@12647
   495
wenzelm@12644
   496
  defs \dots
wenzelm@12647
   497
wenzelm@12644
   498
  subsection {\ttlbrace}* Derived rules *{\ttrbrace}
wenzelm@12644
   499
wenzelm@12644
   500
  lemma fooI: \dots
wenzelm@12644
   501
  lemma fooE: \dots
wenzelm@12644
   502
wenzelm@12647
   503
  subsection {\ttlbrace}* Main theorem {\ttback}label{\ttlbrace}sec:main-theorem{\ttrbrace} *{\ttrbrace}
wenzelm@12644
   504
wenzelm@12644
   505
  theorem main: \dots
wenzelm@12644
   506
wenzelm@12644
   507
  end
wenzelm@12767
   508
  \end{ttbox}\vspace{-\medskipamount}
wenzelm@12644
   509
wenzelm@12767
   510
  You may occasionally want to change the meaning of markup commands,
wenzelm@12767
   511
  say via \verb,\renewcommand, in \texttt{root.tex}.  For example,
wenzelm@12767
   512
  \verb,\isamarkupheader, is a good candidate for some tuning.  We
wenzelm@12767
   513
  could move it up in the hierarchy to become \verb,\chapter,.
wenzelm@12644
   514
wenzelm@12644
   515
\begin{verbatim}
wenzelm@12644
   516
  \renewcommand{\isamarkupheader}[1]{\chapter{#1}}
wenzelm@12644
   517
\end{verbatim}
wenzelm@12644
   518
wenzelm@12767
   519
  \noindent Now we must change the document class given in
wenzelm@12767
   520
  \texttt{root.tex} to something that supports chapters.  A suitable
wenzelm@12767
   521
  command is \verb,\documentclass{report},.
wenzelm@12644
   522
wenzelm@12647
   523
  \medskip The {\LaTeX} macro \verb,\isabellecontext, is maintained to
wenzelm@12647
   524
  hold the name of the current theory context.  This is particularly
wenzelm@12652
   525
  useful for document headings:
wenzelm@12644
   526
wenzelm@12644
   527
\begin{verbatim}
wenzelm@12652
   528
  \renewcommand{\isamarkupheader}[1]
wenzelm@12644
   529
  {\chapter{#1}\markright{THEORY~\isabellecontext}}
wenzelm@12644
   530
\end{verbatim}
wenzelm@12644
   531
wenzelm@12644
   532
  \noindent Make sure to include something like
wenzelm@12647
   533
  \verb,\pagestyle{headings}, in \texttt{root.tex}; the document
paulson@12764
   534
  should have more than two pages to show the effect.%
wenzelm@12644
   535
\end{isamarkuptext}%
wenzelm@12644
   536
\isamarkuptrue%
wenzelm@12644
   537
%
wenzelm@12745
   538
\isamarkupsubsection{Formal Comments and Antiquotations \label{sec:doc-prep-text}%
wenzelm@12644
   539
}
wenzelm@12644
   540
\isamarkuptrue%
wenzelm@12644
   541
%
wenzelm@12644
   542
\begin{isamarkuptext}%
wenzelm@12745
   543
Isabelle \bfindex{source comments}, which are of the form
wenzelm@12747
   544
  \verb,(,\verb,*,~\isa{{\isasymdots}}~\verb,*,\verb,),, essentially act like
wenzelm@12747
   545
  white space and do not really contribute to the content.  They
wenzelm@12747
   546
  mainly serve technical purposes to mark certain oddities in the raw
wenzelm@12747
   547
  input text.  In contrast, \bfindex{formal comments} are portions of
wenzelm@12747
   548
  text that are associated with formal Isabelle/Isar commands
wenzelm@12682
   549
  (\bfindex{marginal comments}), or as standalone paragraphs within a
wenzelm@12666
   550
  theory or proof context (\bfindex{text blocks}).
wenzelm@12658
   551
wenzelm@12658
   552
  \medskip Marginal comments are part of each command's concrete
wenzelm@12671
   553
  syntax \cite{isabelle-ref}; the common form is ``\verb,--,~$text$''
wenzelm@12747
   554
  where $text$ is delimited by \verb,",\isa{{\isasymdots}}\verb,", or
wenzelm@12747
   555
  \verb,{,\verb,*,~\isa{{\isasymdots}}~\verb,*,\verb,}, as before.  Multiple
wenzelm@12671
   556
  marginal comments may be given at the same time.  Here is a simple
wenzelm@12671
   557
  example:%
wenzelm@12666
   558
\end{isamarkuptext}%
wenzelm@12666
   559
\isamarkuptrue%
wenzelm@12666
   560
\isacommand{lemma}\ {\isachardoublequote}A\ {\isacharminus}{\isacharminus}{\isachargreater}\ A{\isachardoublequote}\isanewline
wenzelm@12666
   561
\ \ %
wenzelm@12666
   562
\isamarkupcmt{a triviality of propositional logic%
wenzelm@12666
   563
}
wenzelm@12666
   564
\isanewline
wenzelm@12666
   565
\ \ %
wenzelm@12666
   566
\isamarkupcmt{(should not really bother)%
wenzelm@12666
   567
}
wenzelm@12666
   568
\isanewline
wenzelm@12666
   569
\ \ \isamarkupfalse%
wenzelm@12666
   570
\isacommand{by}\ {\isacharparenleft}rule\ impI{\isacharparenright}\ %
wenzelm@12666
   571
\isamarkupcmt{implicit assumption step involved here%
wenzelm@12666
   572
}
wenzelm@12666
   573
\isamarkupfalse%
wenzelm@12666
   574
%
wenzelm@12666
   575
\begin{isamarkuptext}%
wenzelm@12666
   576
\noindent The above output has been produced as follows:
wenzelm@12658
   577
wenzelm@12658
   578
\begin{verbatim}
wenzelm@12658
   579
  lemma "A --> A"
wenzelm@12658
   580
    -- "a triviality of propositional logic"
wenzelm@12658
   581
    -- "(should not really bother)"
wenzelm@12658
   582
    by (rule impI) -- "implicit assumption step involved here"
wenzelm@12658
   583
\end{verbatim}
wenzelm@12658
   584
wenzelm@12671
   585
  From the {\LaTeX} viewpoint, ``\verb,--,'' acts like a markup
wenzelm@12671
   586
  command, associated with the macro \verb,\isamarkupcmt, (taking a
wenzelm@12671
   587
  single argument).
wenzelm@12658
   588
wenzelm@12666
   589
  \medskip Text blocks are introduced by the commands \bfindex{text}
wenzelm@12666
   590
  and \bfindex{txt}, for theory and proof contexts, respectively.
wenzelm@12666
   591
  Each takes again a single $text$ argument, which is interpreted as a
wenzelm@12666
   592
  free-form paragraph in {\LaTeX} (surrounded by some additional
wenzelm@12671
   593
  vertical space).  This behavior may be changed by redefining the
wenzelm@12671
   594
  {\LaTeX} environments of \verb,isamarkuptext, or
wenzelm@12671
   595
  \verb,isamarkuptxt,, respectively (via \verb,\renewenvironment,) The
wenzelm@12671
   596
  text style of the body is determined by \verb,\isastyletext, and
wenzelm@12671
   597
  \verb,\isastyletxt,; the default setup uses a smaller font within
wenzelm@12747
   598
  proofs.  This may be changed as follows:
wenzelm@12747
   599
wenzelm@12747
   600
\begin{verbatim}
wenzelm@12747
   601
  \renewcommand{\isastyletxt}{\isastyletext}
wenzelm@12747
   602
\end{verbatim}
wenzelm@12658
   603
wenzelm@12767
   604
  \medskip The $text$ part of Isabelle markup commands essentially
wenzelm@12767
   605
  inserts \emph{quoted material} into a formal text, mainly for
wenzelm@12767
   606
  instruction of the reader.  An \bfindex{antiquotation} is again a
wenzelm@12767
   607
  formal object embedded into such an informal portion.  The
wenzelm@12767
   608
  interpretation of antiquotations is limited to some well-formedness
wenzelm@12767
   609
  checks, with the result being pretty printed to the resulting
wenzelm@12767
   610
  document.  Quoted text blocks together with antiquotations provide
wenzelm@12767
   611
  an attractive means of referring to formal entities, with good
wenzelm@12767
   612
  confidence in getting the technical details right (especially syntax
wenzelm@12767
   613
  and types).
wenzelm@12658
   614
wenzelm@12666
   615
  The general syntax of antiquotations is as follows:
wenzelm@12658
   616
  \texttt{{\at}{\ttlbrace}$name$ $arguments${\ttrbrace}}, or
wenzelm@12658
   617
  \texttt{{\at}{\ttlbrace}$name$ [$options$] $arguments${\ttrbrace}}
wenzelm@12666
   618
  for a comma-separated list of options consisting of a $name$ or
wenzelm@12767
   619
  \texttt{$name$=$value$} each.  The syntax of $arguments$ depends on
wenzelm@12767
   620
  the kind of antiquotation, it generally follows the same conventions
wenzelm@12767
   621
  for types, terms, or theorems as in the formal part of a theory.
wenzelm@12658
   622
wenzelm@12767
   623
  \medskip This sentence demonstrates quotations and antiquotations:
wenzelm@12767
   624
  \isa{{\isasymlambda}x\ y{\isachardot}\ x} is a well-typed term.
wenzelm@12658
   625
paulson@12764
   626
  \medskip\noindent The output above was produced as follows:
wenzelm@12658
   627
  \begin{ttbox}
wenzelm@12658
   628
text {\ttlbrace}*
paulson@12764
   629
  This sentence demonstrates quotations and antiquotations:
wenzelm@12658
   630
  {\at}{\ttlbrace}term "%x y. x"{\ttrbrace} is a well-typed term.
wenzelm@12658
   631
*{\ttrbrace}
wenzelm@12767
   632
  \end{ttbox}\vspace{-\medskipamount}
wenzelm@12658
   633
paulson@12764
   634
  The notational change from the ASCII character~\verb,%, to the
wenzelm@12767
   635
  symbol~\isa{{\isasymlambda}} reveals that Isabelle printed this term, after
wenzelm@12767
   636
  parsing and type-checking.  Document preparation enables symbolic
wenzelm@12767
   637
  output by default.
wenzelm@12658
   638
paulson@12764
   639
  \medskip The next example includes an option to modify Isabelle's
paulson@12764
   640
  \verb,show_types, flag.  The antiquotation
wenzelm@12767
   641
  \texttt{{\at}}\verb,{term [show_types] "%x y. x"}, produces the
wenzelm@12767
   642
  output \isa{{\isasymlambda}{\isacharparenleft}x{\isasymColon}{\isacharprime}a{\isacharparenright}\ y{\isasymColon}{\isacharprime}b{\isachardot}\ x}.  Type inference has figured
wenzelm@12767
   643
  out the most general typings in the present theory context.  Terms
wenzelm@12767
   644
  may acquire different typings due to constraints imposed by their
wenzelm@12767
   645
  environment; within a proof, for example, variables are given the
wenzelm@12767
   646
  same types as they have in the main goal statement.
wenzelm@12658
   647
paulson@12764
   648
  \medskip Several further kinds of antiquotations and options are
wenzelm@12666
   649
  available \cite{isabelle-sys}.  Here are a few commonly used
wenzelm@12671
   650
  combinations:
wenzelm@12658
   651
wenzelm@12658
   652
  \medskip
wenzelm@12658
   653
wenzelm@12658
   654
  \begin{tabular}{ll}
wenzelm@12658
   655
  \texttt{\at}\verb,{typ,~$\tau$\verb,}, & print type $\tau$ \\
wenzelm@12658
   656
  \texttt{\at}\verb,{term,~$t$\verb,}, & print term $t$ \\
wenzelm@12658
   657
  \texttt{\at}\verb,{prop,~$\phi$\verb,}, & print proposition $\phi$ \\
wenzelm@12666
   658
  \texttt{\at}\verb,{prop [display],~$\phi$\verb,}, & print large proposition $\phi$ (with linebreaks) \\
wenzelm@12658
   659
  \texttt{\at}\verb,{prop [source],~$\phi$\verb,}, & check proposition $\phi$, print its input \\
wenzelm@12658
   660
  \texttt{\at}\verb,{thm,~$a$\verb,}, & print fact $a$ \\
wenzelm@12658
   661
  \texttt{\at}\verb,{thm,~$a$~\verb,[no_vars]}, & print fact $a$, fixing schematic variables \\
wenzelm@12747
   662
  \texttt{\at}\verb,{thm [source],~$a$\verb,}, & check availability of fact $a$, print its name \\
wenzelm@12658
   663
  \texttt{\at}\verb,{text,~$s$\verb,}, & print uninterpreted text $s$ \\
wenzelm@12658
   664
  \end{tabular}
wenzelm@12658
   665
wenzelm@12658
   666
  \medskip
wenzelm@12658
   667
wenzelm@12666
   668
  Note that \attrdx{no_vars} given above is \emph{not} an
wenzelm@12666
   669
  antiquotation option, but an attribute of the theorem argument given
wenzelm@12666
   670
  here.  This might be useful with a diagnostic command like
wenzelm@12666
   671
  \isakeyword{thm}, too.
wenzelm@12658
   672
wenzelm@12666
   673
  \medskip The \texttt{\at}\verb,{text, $s$\verb,}, antiquotation is
wenzelm@12658
   674
  particularly interesting.  Embedding uninterpreted text within an
wenzelm@12666
   675
  informal body might appear useless at first sight.  Here the key
wenzelm@12666
   676
  virtue is that the string $s$ is processed as Isabelle output,
wenzelm@12666
   677
  interpreting Isabelle symbols appropriately.
wenzelm@12658
   678
wenzelm@12666
   679
  For example, \texttt{\at}\verb,{text "\<forall>\<exists>"}, produces \isa{{\isasymforall}{\isasymexists}}, according to the standard interpretation of these symbol
wenzelm@12666
   680
  (cf.\ \S\ref{sec:doc-prep-symbols}).  Thus we achieve consistent
wenzelm@12658
   681
  mathematical notation in both the formal and informal parts of the
wenzelm@12767
   682
  document very easily, independently of the term language of
wenzelm@12767
   683
  Isabelle.  Manual {\LaTeX} code would leave more control over the
wenzelm@12767
   684
  typesetting, but is also slightly more tedious.%
wenzelm@12644
   685
\end{isamarkuptext}%
wenzelm@12644
   686
\isamarkuptrue%
wenzelm@12644
   687
%
wenzelm@12674
   688
\isamarkupsubsection{Interpretation of Symbols \label{sec:doc-prep-symbols}%
wenzelm@12644
   689
}
wenzelm@12644
   690
\isamarkuptrue%
wenzelm@12644
   691
%
wenzelm@12644
   692
\begin{isamarkuptext}%
wenzelm@12666
   693
As has been pointed out before (\S\ref{sec:syntax-symbols}),
wenzelm@12671
   694
  Isabelle symbols are the smallest syntactic entities --- a
wenzelm@12682
   695
  straightforward generalization of ASCII characters.  While Isabelle
wenzelm@12666
   696
  does not impose any interpretation of the infinite collection of
paulson@12764
   697
  named symbols, {\LaTeX} documents use canonical glyphs for certain
wenzelm@12671
   698
  standard symbols \cite[appendix~A]{isabelle-sys}.
wenzelm@12658
   699
wenzelm@12767
   700
  The {\LaTeX} code produced from Isabelle text follows a simple
wenzelm@12767
   701
  scheme.  You can tune the final appearance by redefining certain
wenzelm@12767
   702
  macros, say in \texttt{root.tex} of the document.
wenzelm@12658
   703
wenzelm@12671
   704
  \begin{enumerate}
wenzelm@12671
   705
wenzelm@12671
   706
  \item 7-bit ASCII characters: letters \texttt{A\dots Z} and
wenzelm@12747
   707
  \texttt{a\dots z} are output directly, digits are passed as an
wenzelm@12671
   708
  argument to the \verb,\isadigit, macro, other characters are
wenzelm@12671
   709
  replaced by specifically named macros of the form
wenzelm@12666
   710
  \verb,\isacharXYZ,.
wenzelm@12658
   711
wenzelm@12767
   712
  \item Named symbols: \verb,\,\verb,<XYZ>, is turned into
wenzelm@12767
   713
  \verb,{\isasymXYZ},; note the additional braces.
wenzelm@12658
   714
wenzelm@12767
   715
  \item Named control symbols: \verb,\,\verb,<^XYZ>, is turned into
wenzelm@12767
   716
  \verb,\isactrlXYZ,; subsequent symbols may act as arguments if the
wenzelm@12767
   717
  control macro is defined accordingly.
wenzelm@12671
   718
wenzelm@12666
   719
  \end{enumerate}
wenzelm@12666
   720
paulson@12764
   721
  You may occasionally wish to give new {\LaTeX} interpretations of
paulson@12764
   722
  named symbols.  This merely requires an appropriate definition of
wenzelm@12767
   723
  \verb,\isasymXYZ,, for \verb,\,\verb,<XYZ>, (see
wenzelm@12747
   724
  \texttt{isabelle.sty} for working examples).  Control symbols are
wenzelm@12747
   725
  slightly more difficult to get right, though.
wenzelm@12666
   726
wenzelm@12666
   727
  \medskip The \verb,\isabellestyle, macro provides a high-level
wenzelm@12666
   728
  interface to tune the general appearance of individual symbols.  For
wenzelm@12671
   729
  example, \verb,\isabellestyle{it}, uses the italics text style to
wenzelm@12671
   730
  mimic the general appearance of the {\LaTeX} math mode; double
wenzelm@12743
   731
  quotes are not printed at all.  The resulting quality of typesetting
wenzelm@12743
   732
  is quite good, so this should be the default style for work that
wenzelm@12743
   733
  gets distributed to a broader audience.%
wenzelm@12644
   734
\end{isamarkuptext}%
wenzelm@12644
   735
\isamarkuptrue%
wenzelm@12644
   736
%
wenzelm@12652
   737
\isamarkupsubsection{Suppressing Output \label{sec:doc-prep-suppress}%
wenzelm@12644
   738
}
wenzelm@12644
   739
\isamarkuptrue%
wenzelm@12644
   740
%
wenzelm@12644
   741
\begin{isamarkuptext}%
wenzelm@12749
   742
By default, Isabelle's document system generates a {\LaTeX} file for
wenzelm@12749
   743
  each theory that gets loaded while running the session.  The
wenzelm@12749
   744
  generated \texttt{session.tex} will include all of these in order of
wenzelm@12749
   745
  appearance, which in turn gets included by the standard
wenzelm@12743
   746
  \texttt{root.tex}.  Certainly one may change the order or suppress
wenzelm@12747
   747
  unwanted theories by ignoring \texttt{session.tex} and load
wenzelm@12747
   748
  individual files directly in \texttt{root.tex}.  On the other hand,
wenzelm@12747
   749
  such an arrangement requires additional maintenance whenever the
wenzelm@12747
   750
  collection of theories changes.
wenzelm@12644
   751
wenzelm@12647
   752
  Alternatively, one may tune the theory loading process in
wenzelm@12652
   753
  \texttt{ROOT.ML} itself: traversal of the theory dependency graph
wenzelm@12671
   754
  may be fine-tuned by adding \verb,use_thy, invocations, although
wenzelm@12671
   755
  topological sorting still has to be observed.  Moreover, the ML
wenzelm@12671
   756
  operator \verb,no_document, temporarily disables document generation
wenzelm@12767
   757
  while executing a theory loader command.  Its usage is like this:
wenzelm@12647
   758
wenzelm@12647
   759
\begin{verbatim}
wenzelm@12666
   760
  no_document use_thy "T";
wenzelm@12647
   761
\end{verbatim}
wenzelm@12647
   762
wenzelm@12767
   763
  \medskip Theory output may be suppressed more selectively.  Research
wenzelm@12767
   764
  articles and slides usually do not include the formal content in
wenzelm@12767
   765
  full.  Delimiting \bfindex{ignored material} by the special source
wenzelm@12767
   766
  comments \verb,(,\verb,*,\verb,<,\verb,*,\verb,), and
wenzelm@12767
   767
  \verb,(,\verb,*,\verb,>,\verb,*,\verb,), tells the document
wenzelm@12767
   768
  preparation system to suppress these parts; the formal checking of
wenzelm@12771
   769
  the theory is unchanged, of course.
wenzelm@12647
   770
wenzelm@12767
   771
  In this example, we hide a theory's \isakeyword{theory} and
wenzelm@12767
   772
  \isakeyword{end} brackets:
wenzelm@12647
   773
wenzelm@12647
   774
  \medskip
wenzelm@12647
   775
wenzelm@12647
   776
  \begin{tabular}{l}
wenzelm@12647
   777
  \verb,(,\verb,*,\verb,<,\verb,*,\verb,), \\
wenzelm@12666
   778
  \texttt{theory T = Main:} \\
wenzelm@12647
   779
  \verb,(,\verb,*,\verb,>,\verb,*,\verb,), \\
wenzelm@12647
   780
  ~~$\vdots$ \\
wenzelm@12647
   781
  \verb,(,\verb,*,\verb,<,\verb,*,\verb,), \\
wenzelm@12647
   782
  \texttt{end} \\
wenzelm@12647
   783
  \verb,(,\verb,*,\verb,>,\verb,*,\verb,), \\
wenzelm@12647
   784
  \end{tabular}
wenzelm@12647
   785
wenzelm@12647
   786
  \medskip
wenzelm@12647
   787
paulson@12764
   788
  Text may be suppressed in a fine-grained manner.  We may even hide
wenzelm@12747
   789
  vital parts of a proof, pretending that things have been simpler
wenzelm@12767
   790
  than they really were.  For example, this ``fully automatic'' proof
wenzelm@12767
   791
  is actually a fake:%
wenzelm@12649
   792
\end{isamarkuptext}%
wenzelm@12649
   793
\isamarkuptrue%
wenzelm@12649
   794
\isacommand{lemma}\ {\isachardoublequote}x\ {\isasymnoteq}\ {\isacharparenleft}{\isadigit{0}}{\isacharcolon}{\isacharcolon}int{\isacharparenright}\ {\isasymLongrightarrow}\ {\isadigit{0}}\ {\isacharless}\ x\ {\isacharasterisk}\ x{\isachardoublequote}\isanewline
wenzelm@12649
   795
\ \ \isamarkupfalse%
wenzelm@12649
   796
\isacommand{by}\ {\isacharparenleft}auto{\isacharparenright}\isamarkupfalse%
wenzelm@12649
   797
%
wenzelm@12649
   798
\begin{isamarkuptext}%
wenzelm@12649
   799
\noindent Here the real source of the proof has been as follows:
wenzelm@12649
   800
wenzelm@12649
   801
\begin{verbatim}
paulson@14353
   802
  by (auto(*<*)simp add: zero_less_mult_iff(*>*))
wenzelm@12658
   803
\end{verbatim}
wenzelm@12658
   804
%(*
wenzelm@12649
   805
wenzelm@12767
   806
  \medskip Suppressing portions of printed text demands care.  You
wenzelm@12767
   807
  should not misrepresent the underlying theory development.  It is
wenzelm@12767
   808
  easy to invalidate the visible text by hiding references to
wenzelm@12767
   809
  questionable axioms.
wenzelm@12652
   810
wenzelm@12747
   811
  Authentic reports of Isabelle/Isar theories, say as part of a
wenzelm@12767
   812
  library, should suppress nothing.  Other users may need the full
wenzelm@12767
   813
  information for their own derivative work.  If a particular
wenzelm@12767
   814
  formalization appears inadequate for general public coverage, it is
wenzelm@12767
   815
  often more appropriate to think of a better way in the first place.
wenzelm@12671
   816
wenzelm@12671
   817
  \medskip Some technical subtleties of the
wenzelm@12666
   818
  \verb,(,\verb,*,\verb,<,\verb,*,\verb,),~\verb,(,\verb,*,\verb,>,\verb,*,\verb,),
paulson@12764
   819
  elements need to be kept in mind, too --- the system performs few
wenzelm@12671
   820
  sanity checks here.  Arguments of markup commands and formal
wenzelm@12649
   821
  comments must not be hidden, otherwise presentation fails.  Open and
wenzelm@12751
   822
  close parentheses need to be inserted carefully; it is easy to hide
wenzelm@12751
   823
  the wrong parts, especially after rearranging the theory text.%
wenzelm@12635
   824
\end{isamarkuptext}%
wenzelm@12627
   825
\isamarkuptrue%
wenzelm@11866
   826
\isamarkupfalse%
wenzelm@11648
   827
\end{isabellebody}%
wenzelm@11648
   828
%%% Local Variables:
wenzelm@11648
   829
%%% mode: latex
wenzelm@11648
   830
%%% TeX-master: "root"
wenzelm@11648
   831
%%% End: