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