| author | haftmann | 
| Tue, 20 Jun 2017 08:01:56 +0200 | |
| changeset 66128 | 0181bb24bdca | 
| parent 64267 | b9a1486e79be | 
| child 66453 | cc19f7ca2ed6 | 
| permissions | -rw-r--r-- | 
| 15337 | 1 | (*<*) | 
| 2 | theory Sugar | |
| 63414 | 3 | imports | 
| 4 | "~~/src/HOL/Library/LaTeXsugar" | |
| 5 | "~~/src/HOL/Library/OptionalSugar" | |
| 15337 | 6 | begin | 
| 61645 | 7 | no_translations | 
| 8 |   ("prop") "P \<and> Q \<Longrightarrow> R" <= ("prop") "P \<Longrightarrow> Q \<Longrightarrow> R"
 | |
| 15337 | 9 | (*>*) | 
| 49239 | 10 | text{*
 | 
| 11 | \section{Introduction}
 | |
| 15337 | 12 | |
| 49239 | 13 | This document is for those Isabelle users who have mastered | 
| 15337 | 14 | the art of mixing \LaTeX\ text and Isabelle theories and never want to | 
| 15 | typeset a theorem by hand anymore because they have experienced the | |
| 64267 | 16 | bliss of writing \verb!@!\verb!{thm[display,mode=latex_sum] sum_Suc_diff [no_vars]}!
 | 
| 15337 | 17 | and seeing Isabelle typeset it for them: | 
| 64267 | 18 | @{thm[display,mode=latex_sum] sum_Suc_diff[no_vars]}
 | 
| 15342 | 19 | No typos, no omissions, no sweat. | 
| 20 | If you have not experienced that joy, read Chapter 4, \emph{Presenting
 | |
| 58620 | 21 | Theories}, @{cite LNCS2283} first.
 | 
| 15337 | 22 | |
| 23 | If you have mastered the art of Isabelle's \emph{antiquotations},
 | |
| 24 | i.e.\ things like the above \verb!@!\verb!{thm...}!, beware: in your vanity
 | |
| 63414 | 25 | you may be tempted to think that all readers of the stunning | 
| 15337 | 26 | documents you can now produce at the drop of a hat will be struck with | 
| 27 | awe at the beauty unfolding in front of their eyes. Until one day you | |
| 28 | come across that very critical of readers known as the ``common referee''. | |
| 29 | He has the nasty habit of refusing to understand unfamiliar notation | |
| 30 | like Isabelle's infamous @{text"\<lbrakk> \<rbrakk> \<Longrightarrow>"} no matter how many times you
 | |
| 31 | explain it in your paper. Even worse, he thinks that using @{text"\<lbrakk>
 | |
| 32 | \<rbrakk>"} for anything other than denotational semantics is a cardinal sin | |
| 15342 | 33 | that must be punished by instant rejection. | 
| 15337 | 34 | |
| 35 | ||
| 36 | This document shows you how to make Isabelle and \LaTeX\ cooperate to | |
| 37 | produce ordinary looking mathematics that hides the fact that it was | |
| 15471 | 38 | typeset by a machine. You merely need to load the right files: | 
| 39 | \begin{itemize}
 | |
| 40 | \item Import theory \texttt{LaTeXsugar} in the header of your own
 | |
| 41 | theory.  You may also want bits of \texttt{OptionalSugar}, which you can
 | |
| 42 | copy selectively into your own theory or import as a whole. Both | |
| 63414 | 43 | theories live in \texttt{HOL/Library}.
 | 
| 15378 | 44 | |
| 15471 | 45 | \item Should you need additional \LaTeX\ packages (the text will tell | 
| 46 | you so), you include them at the beginning of your \LaTeX\ document, | |
| 16153 | 47 | typically in \texttt{root.tex}. For a start, you should
 | 
| 48 | \verb!\usepackage{amssymb}! --- otherwise typesetting
 | |
| 49 | @{prop[source]"\<not>(\<exists>x. P x)"} will fail because the AMS symbol
 | |
| 50 | @{text"\<nexists>"} is missing.
 | |
| 15471 | 51 | \end{itemize}
 | 
| 49239 | 52 | |
| 15342 | 53 | |
| 49239 | 54 | \section{HOL syntax}
 | 
| 15342 | 55 | |
| 49239 | 56 | \subsection{Logic}
 | 
| 15342 | 57 | |
| 49239 | 58 | The formula @{prop[source]"\<not>(\<exists>x. P x)"} is typeset as @{prop"~(EX x. P x)"}.
 | 
| 16153 | 59 | |
| 60 | The predefined constructs @{text"if"}, @{text"let"} and
 | |
| 15342 | 61 | @{text"case"} are set in sans serif font to distinguish them from
 | 
| 62 | other functions. This improves readability: | |
| 63 | \begin{itemize}
 | |
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
49628diff
changeset | 64 | \item @{term"if b then e\<^sub>1 else e\<^sub>2"} instead of @{text"if b then e\<^sub>1 else e\<^sub>2"}.
 | 
| 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
49628diff
changeset | 65 | \item @{term"let x = e\<^sub>1 in e\<^sub>2"} instead of @{text"let x = e\<^sub>1 in e\<^sub>2"}.
 | 
| 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
49628diff
changeset | 66 | \item @{term"case x of True \<Rightarrow> e\<^sub>1 | False \<Rightarrow> e\<^sub>2"} instead of\\
 | 
| 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
49628diff
changeset | 67 |       @{text"case x of True \<Rightarrow> e\<^sub>1 | False \<Rightarrow> e\<^sub>2"}.
 | 
| 15342 | 68 | \end{itemize}
 | 
| 69 | ||
| 49239 | 70 | \subsection{Sets}
 | 
| 15337 | 71 | |
| 49239 | 72 | Although set syntax in HOL is already close to | 
| 15342 | 73 | standard, we provide a few further improvements: | 
| 74 | \begin{itemize}
 | |
| 75 | \item @{term"{x. P}"} instead of @{text"{x. P}"}.
 | |
| 27688 | 76 | \item @{term"{}"} instead of @{text"{}"}, where
 | 
| 77 |  @{term"{}"} is also input syntax.
 | |
| 15342 | 78 | \item @{term"insert a (insert b (insert c M))"} instead of @{text"insert a (insert b (insert c M))"}.
 | 
| 56977 | 79 | \item @{term"card A"} instead of @{text"card A"}.
 | 
| 15342 | 80 | \end{itemize}
 | 
| 49239 | 81 | |
| 15342 | 82 | |
| 49239 | 83 | \subsection{Lists}
 | 
| 15342 | 84 | |
| 49239 | 85 | If lists are used heavily, the following notations increase readability: | 
| 15342 | 86 | \begin{itemize}
 | 
| 27688 | 87 | \item @{term"x # xs"} instead of @{text"x # xs"},
 | 
| 88 |       where @{term"x # xs"} is also input syntax.
 | |
| 15342 | 89 | \item @{term"length xs"} instead of @{text"length xs"}.
 | 
| 15385 | 90 | \item @{term"nth xs n"} instead of @{text"nth xs n"},
 | 
| 15342 | 91 |       the $n$th element of @{text xs}.
 | 
| 92 | ||
| 22834 | 93 | \item Human readers are good at converting automatically from lists to | 
| 30502 | 94 | sets. Hence \texttt{OptionalSugar} contains syntax for suppressing the
 | 
| 22834 | 95 | conversion function @{const set}: for example, @{prop[source]"x \<in> set xs"}
 | 
| 96 | becomes @{prop"x \<in> set xs"}.
 | |
| 97 | ||
| 15366 | 98 | \item The @{text"@"} operation associates implicitly to the right,
 | 
| 99 | which leads to unpleasant line breaks if the term is too long for one | |
| 100 | line. To avoid this, \texttt{OptionalSugar} contains syntax to group
 | |
| 101 | @{text"@"}-terms to the left before printing, which leads to better
 | |
| 102 | line breaking behaviour: | |
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
49628diff
changeset | 103 | @{term[display]"term\<^sub>0 @ term\<^sub>1 @ term\<^sub>2 @ term\<^sub>3 @ term\<^sub>4 @ term\<^sub>5 @ term\<^sub>6 @ term\<^sub>7 @ term\<^sub>8 @ term\<^sub>9 @ term\<^sub>1\<^sub>0"}
 | 
| 15366 | 104 | |
| 15342 | 105 | \end{itemize}
 | 
| 49239 | 106 | |
| 15337 | 107 | |
| 49239 | 108 | \subsection{Numbers}
 | 
| 30502 | 109 | |
| 49239 | 110 | Coercions between numeric types are alien to mathematicians who | 
| 30502 | 111 | consider, for example, @{typ nat} as a subset of @{typ int}.
 | 
| 112 | \texttt{OptionalSugar} contains syntax for suppressing numeric coercions such
 | |
| 113 | as @{const int} @{text"::"} @{typ"nat \<Rightarrow> int"}. For example,
 | |
| 114 | @{term[source]"int 5"} is printed as @{term "int 5"}. Embeddings of types
 | |
| 115 | @{typ nat}, @{typ int}, @{typ real} are covered; non-injective coercions such
 | |
| 116 | as @{const nat} @{text"::"} @{typ"int \<Rightarrow> nat"} are not and should not be
 | |
| 49239 | 117 | hidden. | 
| 30502 | 118 | |
| 15337 | 119 | |
| 49239 | 120 | \section{Printing theorems}
 | 
| 15689 | 121 | |
| 61645 | 122 | The @{prop "P \<Longrightarrow> Q \<Longrightarrow> R"} syntax is a bit idiosyncratic. If you would like
 | 
| 123 | to avoid it, you can easily print the premises as a conjunction: | |
| 124 | @{prop "P \<and> Q \<Longrightarrow> R"}. See \texttt{OptionalSugar} for the required ``code''.
 | |
| 125 | ||
| 49239 | 126 | \subsection{Question marks}
 | 
| 127 | ||
| 128 | If you print anything, especially theorems, containing | |
| 15689 | 129 | schematic variables they are prefixed with a question mark: | 
| 130 | \verb!@!\verb!{thm conjI}! results in @{thm conjI}. Most of the time
 | |
| 131 | you would rather not see the question marks. There is an attribute | |
| 132 | \verb!no_vars! that you can attach to the theorem that turns its | |
| 63414 | 133 | schematic into ordinary free variables: | 
| 134 | \begin{quote}
 | |
| 135 | \verb!@!\verb!{thm conjI[no_vars]}!\\
 | |
| 136 | \showout @{thm conjI[no_vars]}
 | |
| 137 | \end{quote}
 | |
| 15689 | 138 | This \verb!no_vars! business can become a bit tedious. | 
| 139 | If you would rather never see question marks, simply put | |
| 34877 
ded5b770ec1c
formal antiquotations for ML snippets; no "open" unsynchronized references
 haftmann parents: 
33323diff
changeset | 140 | \begin{quote}
 | 
| 49239 | 141 | \verb!options [show_question_marks = false]! | 
| 34877 
ded5b770ec1c
formal antiquotations for ML snippets; no "open" unsynchronized references
 haftmann parents: 
33323diff
changeset | 142 | \end{quote}
 | 
| 49239 | 143 | into the relevant \texttt{ROOT} file, just before the \texttt{theories} for that session.
 | 
| 33323 | 144 | The rest of this document is produced with this flag set to \texttt{false}.
 | 
| 63414 | 145 | *} | 
| 15689 | 146 | |
| 38980 
af73cf0dc31f
turned show_question_marks into proper configuration option;
 wenzelm parents: 
38798diff
changeset | 147 | (*<*)declare [[show_question_marks = false]](*>*) | 
| 15689 | 148 | |
| 24496 | 149 | subsection {*Qualified names*}
 | 
| 150 | ||
| 151 | text{* If there are multiple declarations of the same name, Isabelle prints
 | |
| 152 | the qualified name, for example @{text "T.length"}, where @{text T} is the
 | |
| 153 | theory it is defined in, to distinguish it from the predefined @{const[source]
 | |
| 154 | "List.length"}. In case there is no danger of confusion, you can insist on | |
| 42669 
04dfffda5671
more conventional naming scheme: names_long, names_short, names_unique;
 wenzelm parents: 
42358diff
changeset | 155 | short names (no qualifiers) by setting the \verb!names_short! | 
| 42358 
b47d41d9f4b5
Name_Space: proper configuration options long_names, short_names, unique_names instead of former unsynchronized references;
 wenzelm parents: 
42289diff
changeset | 156 | configuration option in the context. | 
| 49239 | 157 | |
| 24496 | 158 | |
| 49239 | 159 | \subsection {Variable names\label{sec:varnames}}
 | 
| 16395 | 160 | |
| 49239 | 161 | It sometimes happens that you want to change the name of a | 
| 16395 | 162 | variable in a theorem before printing it. This can easily be achieved | 
| 163 | with the help of Isabelle's instantiation attribute \texttt{where}:
 | |
| 164 | \begin{quote}
 | |
| 63414 | 165 | \verb!@!\verb!{thm conjI[where P = \<phi> and Q = \<psi>]}!\\
 | 
| 166 | \showout @{thm conjI[where P = \<phi> and Q = \<psi>]}
 | |
| 16395 | 167 | \end{quote}
 | 
| 168 | To support the ``\_''-notation for irrelevant variables | |
| 169 | the constant \texttt{DUMMY} has been introduced:
 | |
| 170 | \begin{quote}
 | |
| 63414 | 171 | \verb!@!\verb!{thm fst_conv[of _ DUMMY]}!\\
 | 
| 172 | \showout @{thm fst_conv[of _ DUMMY]}
 | |
| 173 | \end{quote}
 | |
| 174 | As expected, the second argument has been replaced by ``\_'', | |
| 175 | but the first argument is the ugly @{text "x1.0"}, a schematic variable
 | |
| 176 | with suppressed question mark. Schematic variables that end in digits, | |
| 177 | e.g. @{text"x1"}, are still printed with a trailing @{text".0"},
 | |
| 178 | e.g. @{text"x1.0"}, their internal index. This can be avoided by
 | |
| 179 | turning the last digit into a subscript: write \<^verbatim>\<open>x\<^sub>1\<close> and | |
| 180 | obtain the much nicer @{text"x\<^sub>1"}. Alternatively, you can display trailing digits of
 | |
| 181 | schematic and free variables as subscripts with the \texttt{sub} style:
 | |
| 182 | \begin{quote}
 | |
| 183 | \verb!@!\verb!{thm (sub) fst_conv[of _ DUMMY]}!\\
 | |
| 184 | \showout @{thm (sub) fst_conv[of _ DUMMY]}
 | |
| 16395 | 185 | \end{quote}
 | 
| 63414 | 186 | The insertion of underscores can be automated with the \verb!dummy_pats! style: | 
| 36138 
1faa0fc34174
advertise [rename_abs] attribute in LaTeXsugar -- wish I had known about this earier.
 krauss parents: 
34890diff
changeset | 187 | \begin{quote}
 | 
| 63414 | 188 | \verb!@!\verb!{thm (dummy_pats,sub) fst_conv}!\\
 | 
| 189 | \showout @{thm (dummy_pats,sub) fst_conv}
 | |
| 36138 
1faa0fc34174
advertise [rename_abs] attribute in LaTeXsugar -- wish I had known about this earier.
 krauss parents: 
34890diff
changeset | 190 | \end{quote}
 | 
| 63414 | 191 | The theorem must be an equation. Then every schematic variable that occurs | 
| 192 | on the left-hand but not the right-hand side is replaced by \texttt{DUMMY}.
 | |
| 193 | This is convenient for displaying functional programs. | |
| 194 | ||
| 195 | Variables that are bound by quantifiers or lambdas can be renamed | |
| 196 | with the help of the attribute \verb!rename_abs!. | |
| 197 | It expects a list of names or underscores, similar to the \texttt{of} attribute:
 | |
| 198 | \begin{quote}
 | |
| 199 | \verb!@!\verb!{thm split_paired_All[rename_abs _ l r]}!\\
 | |
| 200 | \showout @{thm split_paired_All[rename_abs _ l r]}
 | |
| 201 | \end{quote}
 | |
| 49239 | 202 | |
| 16395 | 203 | |
| 49239 | 204 | \subsection{Inference rules}
 | 
| 15337 | 205 | |
| 49239 | 206 | To print theorems as inference rules you need to include Didier | 
| 58620 | 207 | R\'emy's \texttt{mathpartir} package~@{cite mathpartir}
 | 
| 15342 | 208 | for typesetting inference rules in your \LaTeX\ file. | 
| 15337 | 209 | |
| 15689 | 210 | Writing \verb!@!\verb!{thm[mode=Rule] conjI}! produces
 | 
| 211 | @{thm[mode=Rule] conjI}, even in the middle of a sentence.
 | |
| 15342 | 212 | If you prefer your inference rule on a separate line, maybe with a name, | 
| 213 | \begin{center}
 | |
| 15689 | 214 | @{thm[mode=Rule] conjI} {\sc conjI}
 | 
| 15342 | 215 | \end{center}
 | 
| 216 | is produced by | |
| 15337 | 217 | \begin{quote}
 | 
| 218 | \verb!\begin{center}!\\
 | |
| 15689 | 219 | \verb!@!\verb!{thm[mode=Rule] conjI} {\sc conjI}!\\
 | 
| 15337 | 220 | \verb!\end{center}!
 | 
| 221 | \end{quote}
 | |
| 24497 | 222 | It is not recommended to use the standard \texttt{display} option
 | 
| 15342 | 223 | together with \texttt{Rule} because centering does not work and because
 | 
| 224 | the line breaking mechanisms of \texttt{display} and \texttt{mathpartir} can
 | |
| 225 | clash. | |
| 226 | ||
| 15337 | 227 | Of course you can display multiple rules in this fashion: | 
| 228 | \begin{quote}
 | |
| 24497 | 229 | \verb!\begin{center}!\\
 | 
| 15689 | 230 | \verb!@!\verb!{thm[mode=Rule] conjI} {\sc conjI} \\[1ex]!\\
 | 
| 231 | \verb!@!\verb!{thm[mode=Rule] conjE} {\sc disjI$_1$} \qquad!\\
 | |
| 232 | \verb!@!\verb!{thm[mode=Rule] disjE} {\sc disjI$_2$}!\\
 | |
| 15337 | 233 | \verb!\end{center}!
 | 
| 234 | \end{quote}
 | |
| 235 | yields | |
| 24497 | 236 | \begin{center}\small
 | 
| 15689 | 237 | @{thm[mode=Rule] conjI} {\sc conjI} \\[1ex]
 | 
| 238 | @{thm[mode=Rule] disjI1} {\sc disjI$_1$} \qquad
 | |
| 239 | @{thm[mode=Rule] disjI2} {\sc disjI$_2$}
 | |
| 15337 | 240 | \end{center}
 | 
| 241 | ||
| 15342 | 242 | The \texttt{mathpartir} package copes well if there are too many
 | 
| 243 | premises for one line: | |
| 244 | \begin{center}
 | |
| 245 | @{prop[mode=Rule] "\<lbrakk> A \<longrightarrow> B; B \<longrightarrow> C; C \<longrightarrow> D; D \<longrightarrow> E; E \<longrightarrow> F; F \<longrightarrow> G;
 | |
| 246 | G \<longrightarrow> H; H \<longrightarrow> I; I \<longrightarrow> J; J \<longrightarrow> K \<rbrakk> \<Longrightarrow> A \<longrightarrow> K"} | |
| 247 | \end{center}
 | |
| 248 | ||
| 15471 | 249 | Limitations: 1. Premises and conclusion must each not be longer than | 
| 250 | the line.  2. Premises that are @{text"\<Longrightarrow>"}-implications are again
 | |
| 251 | displayed with a horizontal line, which looks at least unusual. | |
| 252 | ||
| 22329 | 253 | |
| 254 | In case you print theorems without premises no rule will be printed by the | |
| 255 | \texttt{Rule} print mode. However, you can use \texttt{Axiom} instead:
 | |
| 256 | \begin{quote}
 | |
| 24497 | 257 | \verb!\begin{center}!\\
 | 
| 22329 | 258 | \verb!@!\verb!{thm[mode=Axiom] refl} {\sc refl}! \\
 | 
| 259 | \verb!\end{center}!
 | |
| 260 | \end{quote}
 | |
| 261 | yields | |
| 24497 | 262 | \begin{center}
 | 
| 22329 | 263 | @{thm[mode=Axiom] refl} {\sc refl} 
 | 
| 264 | \end{center}
 | |
| 49239 | 265 | |
| 15342 | 266 | |
| 49239 | 267 | \subsection{Displays and font sizes}
 | 
| 24497 | 268 | |
| 49239 | 269 | When displaying theorems with the \texttt{display} option, for example as in
 | 
| 24497 | 270 | \verb!@!\verb!{thm[display] refl}! @{thm[display] refl} the theorem is
 | 
| 271 | set in small font. It uses the \LaTeX-macro \verb!\isastyle!, | |
| 272 | which is also the style that regular theory text is set in, e.g. *} | |
| 273 | ||
| 274 | lemma "t = t" | |
| 275 | (*<*)oops(*>*) | |
| 276 | ||
| 277 | text{* \noindent Otherwise \verb!\isastyleminor! is used,
 | |
| 278 | which does not modify the font size (assuming you stick to the default | |
| 279 | \verb!\isabellestyle{it}! in \texttt{root.tex}). If you prefer
 | |
| 280 | normal font size throughout your text, include | |
| 281 | \begin{quote}
 | |
| 282 | \verb!\renewcommand{\isastyle}{\isastyleminor}!
 | |
| 283 | \end{quote}
 | |
| 284 | in \texttt{root.tex}. On the other hand, if you like the small font,
 | |
| 285 | just put \verb!\isastyle! in front of the text in question, | |
| 286 | e.g.\ at the start of one of the center-environments above. | |
| 287 | ||
| 288 | The advantage of the display option is that you can display a whole | |
| 289 | list of theorems in one go. For example, | |
| 46187 
f009e0fe8643
updated example -- List.foldl is no longer defined via primrec;
 wenzelm parents: 
42669diff
changeset | 290 | \verb!@!\verb!{thm[display] append.simps}!
 | 
| 
f009e0fe8643
updated example -- List.foldl is no longer defined via primrec;
 wenzelm parents: 
42669diff
changeset | 291 | generates @{thm[display] append.simps}
 | 
| 49239 | 292 | |
| 24497 | 293 | |
| 49239 | 294 | \subsection{If-then}
 | 
| 15342 | 295 | |
| 49239 | 296 | If you prefer a fake ``natural language'' style you can produce | 
| 15342 | 297 | the body of | 
| 298 | \newtheorem{theorem}{Theorem}
 | |
| 299 | \begin{theorem}
 | |
| 15689 | 300 | @{thm[mode=IfThen] le_trans}
 | 
| 15342 | 301 | \end{theorem}
 | 
| 302 | by typing | |
| 303 | \begin{quote}
 | |
| 15689 | 304 | \verb!@!\verb!{thm[mode=IfThen] le_trans}!
 | 
| 15342 | 305 | \end{quote}
 | 
| 306 | ||
| 307 | In order to prevent odd line breaks, the premises are put into boxes. | |
| 308 | At times this is too drastic: | |
| 309 | \begin{theorem}
 | |
| 310 | @{prop[mode=IfThen] "longpremise \<Longrightarrow> longerpremise \<Longrightarrow> P(f(f(f(f(f(f(f(f(f(x)))))))))) \<Longrightarrow> longestpremise \<Longrightarrow> conclusion"}
 | |
| 311 | \end{theorem}
 | |
| 16153 | 312 | In which case you should use \texttt{IfThenNoBox} instead of
 | 
| 313 | \texttt{IfThen}:
 | |
| 15342 | 314 | \begin{theorem}
 | 
| 315 | @{prop[mode=IfThenNoBox] "longpremise \<Longrightarrow> longerpremise \<Longrightarrow> P(f(f(f(f(f(f(f(f(f(x)))))))))) \<Longrightarrow> longestpremise \<Longrightarrow> conclusion"}
 | |
| 316 | \end{theorem}
 | |
| 49239 | 317 | |
| 15342 | 318 | |
| 49239 | 319 | \subsection{Doing it yourself\label{sec:yourself}}
 | 
| 16153 | 320 | |
| 49239 | 321 | If for some reason you want or need to present theorems your | 
| 16153 | 322 | own way, you can extract the premises and the conclusion explicitly | 
| 323 | and combine them as you like: | |
| 324 | \begin{itemize}
 | |
| 32891 | 325 | \item \verb!@!\verb!{thm (prem 1)! $thm$\verb!}!
 | 
| 326 | prints premise 1 of $thm$. | |
| 327 | \item \verb!@!\verb!{thm (concl)! $thm$\verb!}!
 | |
| 16153 | 328 | prints the conclusion of $thm$. | 
| 329 | \end{itemize}
 | |
| 32891 | 330 | For example, ``from @{thm (prem 2) conjI} and
 | 
| 331 | @{thm (prem 1) conjI} we conclude @{thm (concl) conjI}''
 | |
| 16153 | 332 | is produced by | 
| 333 | \begin{quote}
 | |
| 32891 | 334 | \verb!from !\verb!@!\verb!{thm (prem 2) conjI}! \verb!and !\verb!@!\verb!{thm (prem 1) conjI}!\\
 | 
| 335 | \verb!we conclude !\verb!@!\verb!{thm (concl) conjI}!
 | |
| 16153 | 336 | \end{quote}
 | 
| 337 | Thus you can rearrange or hide premises and typeset the theorem as you like. | |
| 32898 
e871d897969c
term styles also cover antiquotations term_type and typeof
 haftmann parents: 
32891diff
changeset | 338 | Styles like \verb!(prem 1)! are a general mechanism explained | 
| 16153 | 339 | in \S\ref{sec:styles}.
 | 
| 49239 | 340 | |
| 341 | ||
| 342 | \subsection{Patterns}
 | |
| 343 | ||
| 344 | ||
| 345 | In \S\ref{sec:varnames} we shows how to create patterns containing ``@{term DUMMY}''.
 | |
| 346 | You can drive this game even further and extend the syntax of let | |
| 347 | bindings such that certain functions like @{term fst}, @{term hd}, 
 | |
| 348 | etc.\ are printed as patterns. \texttt{OptionalSugar} provides the following:
 | |
| 16153 | 349 | |
| 49239 | 350 | \begin{center}
 | 
| 351 | \begin{tabular}{l@ {~~produced by~~}l}
 | |
| 352 | @{term "let x = fst p in t"} & \verb!@!\verb!{term "let x = fst p in t"}!\\
 | |
| 353 | @{term "let x = snd p in t"} & \verb!@!\verb!{term "let x = snd p in t"}!\\
 | |
| 354 | @{term "let x = hd xs in t"} & \verb!@!\verb!{term "let x = hd xs in t"}!\\
 | |
| 355 | @{term "let x = tl xs in t"} & \verb!@!\verb!{term "let x = tl xs in t"}!\\
 | |
| 356 | @{term "let x = the y in t"} & \verb!@!\verb!{term "let x = the y in t"}!\\
 | |
| 357 | \end{tabular}
 | |
| 358 | \end{center}
 | |
| 359 | ||
| 360 | ||
| 361 | \section {Styles\label{sec:styles}}
 | |
| 15366 | 362 | |
| 49239 | 363 | The \verb!thm! antiquotation works nicely for single theorems, but | 
| 364 | sets of equations as used in definitions are more difficult to | |
| 365 | typeset nicely: people tend to prefer aligned @{text "="} signs.
 | |
| 366 | ||
| 367 | To deal with such cases where it is desirable to dive into the structure | |
| 368 | of terms and theorems, Isabelle offers antiquotations featuring ``styles'': | |
| 369 | ||
| 370 | \begin{quote}
 | |
| 371 | \verb!@!\verb!{thm (style) thm}!\\
 | |
| 372 | \verb!@!\verb!{prop (style) thm}!\\
 | |
| 373 | \verb!@!\verb!{term (style) term}!\\
 | |
| 374 | \verb!@!\verb!{term_type (style) term}!\\
 | |
| 375 | \verb!@!\verb!{typeof (style) term}!\\
 | |
| 376 | \end{quote}
 | |
| 15366 | 377 | |
| 49239 | 378 | A ``style'' is a transformation of a term. There are predefined | 
| 379 | styles, namely \verb!lhs! and \verb!rhs!, \verb!prem! with one argument, and \verb!concl!. | |
| 380 | For example, the output | |
| 381 | \begin{center}
 | |
| 382 | \begin{tabular}{l@ {~~@{text "="}~~}l}
 | |
| 383 | @{thm (lhs) append_Nil} & @{thm (rhs) append_Nil}\\
 | |
| 384 | @{thm (lhs) append_Cons} & @{thm (rhs) append_Cons}
 | |
| 385 | \end{tabular}
 | |
| 386 | \end{center}
 | |
| 387 | is produced by the following code: | |
| 388 | \begin{quote}
 | |
| 389 |   \verb!\begin{center}!\\
 | |
| 390 |   \verb!\begin{tabular}{l@ {~~!\verb!@!\verb!{text "="}~~}l}!\\
 | |
| 391 |   \verb!@!\verb!{thm (lhs) append_Nil} & @!\verb!{thm (rhs) append_Nil}\\!\\
 | |
| 392 |   \verb!@!\verb!{thm (lhs) append_Cons} & @!\verb!{thm (rhs) append_Cons}!\\
 | |
| 393 |   \verb!\end{tabular}!\\
 | |
| 394 |   \verb!\end{center}!
 | |
| 395 | \end{quote}
 | |
| 396 | Note the space between \verb!@! and \verb!{! in the tabular argument.
 | |
| 397 | It prevents Isabelle from interpreting \verb!@ {~~...~~}! 
 | |
| 398 | as an antiquotation. The styles \verb!lhs! and \verb!rhs! | |
| 399 | extract the left hand side (or right hand side respectively) from the | |
| 400 | conclusion of propositions consisting of a binary operator | |
| 401 | (e.~g.~@{text "="}, @{text "\<equiv>"}, @{text "<"}).
 | |
| 15366 | 402 | |
| 49239 | 403 | Likewise, \verb!concl! may be used as a style to show just the | 
| 404 | conclusion of a proposition. For example, take \verb!hd_Cons_tl!: | |
| 405 | \begin{center}
 | |
| 406 |   @{thm hd_Cons_tl}
 | |
| 407 | \end{center}
 | |
| 408 | To print just the conclusion, | |
| 409 | \begin{center}
 | |
| 410 |   @{thm (concl) hd_Cons_tl}
 | |
| 411 | \end{center}
 | |
| 412 | type | |
| 413 | \begin{quote}
 | |
| 414 |   \verb!\begin{center}!\\
 | |
| 415 |   \verb!@!\verb!{thm (concl) hd_Cons_tl}!\\
 | |
| 416 |   \verb!\end{center}!
 | |
| 417 | \end{quote}
 | |
| 418 | Beware that any options must be placed \emph{before} the style, as in this example.
 | |
| 15366 | 419 | |
| 49239 | 420 | Further use cases can be found in \S\ref{sec:yourself}.
 | 
| 421 | If you are not afraid of ML, you may also define your own styles. | |
| 55837 | 422 | Have a look at module @{ML_structure Term_Style}.
 | 
| 49239 | 423 | |
| 424 | ||
| 425 | \section {Proofs}
 | |
| 426 | ||
| 427 | Full proofs, even if written in beautiful Isar style, are | |
| 24497 | 428 | likely to be too long and detailed to be included in conference | 
| 429 | papers, but some key lemmas might be of interest. | |
| 430 | It is usually easiest to put them in figures like the one in Fig.\ | |
| 431 | \ref{fig:proof}. This was achieved with the \isakeyword{text\_raw} command:
 | |
| 15366 | 432 | *} | 
| 433 | text_raw {*
 | |
| 434 |   \begin{figure}
 | |
| 435 |   \begin{center}\begin{minipage}{0.6\textwidth}  
 | |
| 24497 | 436 | \isastyleminor\isamarkuptrue | 
| 15366 | 437 | *} | 
| 438 | lemma True | |
| 439 | proof - | |
| 440 | -- "pretty trivial" | |
| 441 | show True by force | |
| 442 | qed | |
| 15428 | 443 | text_raw {*    
 | 
| 15366 | 444 |   \end{minipage}\end{center}
 | 
| 445 |   \caption{Example proof in a figure.}\label{fig:proof}
 | |
| 446 |   \end{figure}
 | |
| 447 | *} | |
| 448 | text {*
 | |
| 449 | ||
| 450 | \begin{quote}
 | |
| 451 | \small | |
| 452 | \verb!text_raw {!\verb!*!\\
 | |
| 453 | \verb!  \begin{figure}!\\
 | |
| 454 | \verb!  \begin{center}\begin{minipage}{0.6\textwidth}!\\
 | |
| 24497 | 455 | \verb! \isastyleminor\isamarkuptrue!\\ | 
| 15366 | 456 | \verb!*!\verb!}!\\ | 
| 457 | \verb!lemma True!\\ | |
| 458 | \verb!proof -!\\ | |
| 459 | \verb! -- "pretty trivial"!\\ | |
| 460 | \verb! show True by force!\\ | |
| 461 | \verb!qed!\\ | |
| 462 | \verb!text_raw {!\verb!*!\\
 | |
| 463 | \verb!  \end{minipage}\end{center}!\\
 | |
| 464 | \verb!  \caption{Example proof in a figure.}\label{fig:proof}!\\
 | |
| 465 | \verb!  \end{figure}!\\
 | |
| 466 | \verb!*!\verb!}! | |
| 467 | \end{quote}
 | |
| 24497 | 468 | |
| 469 | Other theory text, e.g.\ definitions, can be put in figures, too. | |
| 15342 | 470 | |
| 49239 | 471 | \section{Theory snippets}
 | 
| 15917 
cd4983c76548
Added short description of thm_style and term_style antiquotation
 haftmann parents: 
15689diff
changeset | 472 | |
| 49239 | 473 | This section describes how to include snippets of a theory text in some other \LaTeX\ document. | 
| 474 | The typical scenario is that the description of your theory is not part of the theory text but | |
| 475 | a separate document that antiquotes bits of the theory. This works well for terms and theorems | |
| 476 | but there are no antiquotations, for example, for function definitions or proofs. Even if there are antiquotations, | |
| 477 | the output is usually a reformatted (by Isabelle) version of the input and may not look like | |
| 478 | you wanted it to look. Here is how to include a snippet of theory text (in \LaTeX\ form) in some | |
| 479 | other \LaTeX\ document, in 4 easy steps. Beware that these snippets are not processed by | |
| 480 | any antiquotation mechanism: the resulting \LaTeX\ text is more or less exactly what you wrote | |
| 481 | in the theory, without any added sugar. | |
| 15917 
cd4983c76548
Added short description of thm_style and term_style antiquotation
 haftmann parents: 
15689diff
changeset | 482 | |
| 49239 | 483 | \subsection{Theory markup}
 | 
| 15917 
cd4983c76548
Added short description of thm_style and term_style antiquotation
 haftmann parents: 
15689diff
changeset | 484 | |
| 49239 | 485 | Include some markers at the beginning and the end of the theory snippet you want to cut out. | 
| 486 | You have to place the following lines before and after the snippet, where snippets must always be | |
| 487 | consecutive lines of theory text: | |
| 488 | \begin{quote}
 | |
| 489 | \verb!\text_raw{!\verb!*\snip{!\emph{snippetname}\verb!}{1}{2}{%*!\verb!}!\\
 | |
| 490 | \emph{theory text}\\
 | |
| 491 | \verb!\text_raw{!\verb!*!\verb!}%endsnip*!\verb!}!
 | |
| 492 | \end{quote}
 | |
| 493 | where \emph{snippetname} should be a unique name for the snippet. The numbers \texttt{1}
 | |
| 494 | and \texttt{2} are explained in a moment.
 | |
| 495 | ||
| 496 | \subsection{Generate the \texttt{.tex} file}
 | |
| 15917 
cd4983c76548
Added short description of thm_style and term_style antiquotation
 haftmann parents: 
15689diff
changeset | 497 | |
| 49239 | 498 | Run your theory \texttt{T} with the \texttt{isabelle} \texttt{build} tool
 | 
| 499 | to generate the \LaTeX-file \texttt{T.tex} which is needed for the next step,
 | |
| 500 | extraction of marked snippets. | |
| 501 | You may also want to process \texttt{T.tex} to generate a pdf document.
 | |
| 502 | This requires a definition of \texttt{\char`\\snippet}:
 | |
| 503 | \begin{verbatim}
 | |
| 504 | \newcommand{\repeatisanl}[1]
 | |
| 505 |   {\ifnum#1=0\else\isanewline\repeatisanl{\numexpr#1-1}\fi}
 | |
| 506 | \newcommand{\snip}[4]{\repeatisanl#2#4\repeatisanl#3}
 | |
| 507 | \end{verbatim}
 | |
| 508 | Parameter 2 and 3 of \texttt{\char`\\snippet} are numbers (the \texttt{1}
 | |
| 509 | and \texttt{2} above) and determine how many newlines are inserted before and after the snippet.
 | |
| 510 | Unfortunately \texttt{text\_raw} eats up all preceding and following newlines
 | |
| 511 | and they have to be inserted again in this manner. Otherwise the document generated from \texttt{T.tex}
 | |
| 512 | will look ugly around the snippets. It can take some iterations to get the number of required | |
| 513 | newlines exactly right. | |
| 514 | ||
| 515 | \subsection{Extract marked snippets}
 | |
| 516 | \label{subsec:extract}
 | |
| 15917 
cd4983c76548
Added short description of thm_style and term_style antiquotation
 haftmann parents: 
15689diff
changeset | 517 | |
| 49239 | 518 | Extract the marked bits of text with a shell-level script, e.g. | 
| 519 | \begin{quote}
 | |
| 520 | \verb!sed -n '/\\snip{/,/endsnip/p' T.tex > !\emph{snippets}\verb!.tex!
 | |
| 521 | \end{quote}
 | |
| 522 | File \emph{snippets}\texttt{.tex} (the name is arbitrary) now contains a sequence of blocks like this
 | |
| 523 | \begin{quote}
 | |
| 524 | \verb!\snip{!\emph{snippetname}\verb!}{1}{2}{%!\\
 | |
| 525 | \emph{theory text}\\
 | |
| 526 | \verb!}%endsnip! | |
| 527 | \end{quote}
 | |
| 528 | ||
| 529 | \subsection{Including snippets}
 | |
| 17031 
ffa73448025e
added hint for position of aqu options in connection with styles
 haftmann parents: 
16395diff
changeset | 530 | |
| 49239 | 531 | In the preamble of the document where the snippets are to be used you define \texttt{\char`\\snip}
 | 
| 532 | and input \emph{snippets}\texttt{.tex}:
 | |
| 533 | \begin{verbatim}
 | |
| 534 | \newcommand{\snip}[4]
 | |
| 535 |   {\expandafter\newcommand\csname #1\endcsname{#4}}
 | |
| 536 | \input{snippets}
 | |
| 537 | \end{verbatim}
 | |
| 538 | This definition of \texttt{\char`\\snip} simply has the effect of defining for each snippet
 | |
| 539 | \emph{snippetname} a \LaTeX\ command \texttt{\char`\\}\emph{snippetname}
 | |
| 540 | that produces the corresponding snippet text. In the body of your document you can display that text | |
| 541 | like this: | |
| 542 | \begin{quote}
 | |
| 543 | \verb!\begin{isabelle}!\\
 | |
| 544 | \texttt{\char`\\}\emph{snippetname}\\
 | |
| 545 | \verb!\end{isabelle}!
 | |
| 546 | \end{quote}
 | |
| 547 | The \texttt{isabelle} environment is the one defined in the standard file
 | |
| 548 | \texttt{isabelle.sty} which most likely you are loading anyway.
 | |
| 49628 | 549 | |
| 550 | ||
| 551 | \section{Antiquotation}
 | |
| 552 | ||
| 553 | You want to show a constant and its type? Instead of going | |
| 554 | \verb!@!\verb!{const myconst}! \verb!@!\verb!{text "::"}! \verb!@!\verb!{typeof myconst}!,
 | |
| 555 | you can just write \verb!@!\verb!{const_typ myconst}! using the new antiquotation
 | |
| 556 | \texttt{const\_typ} defined in \texttt{LaTeXsugar}. For example,
 | |
| 557 | \verb!@!\verb!{const_typ length}! produces @{const_typ length}.
 | |
| 558 | ||
| 15917 
cd4983c76548
Added short description of thm_style and term_style antiquotation
 haftmann parents: 
15689diff
changeset | 559 | *} | 
| 
cd4983c76548
Added short description of thm_style and term_style antiquotation
 haftmann parents: 
15689diff
changeset | 560 | |
| 15337 | 561 | (*<*) | 
| 562 | end | |
| 16175 | 563 | (*>*) |