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