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