author | wenzelm |
Mon, 06 Aug 2018 15:19:39 +0200 | |
changeset 68737 | a8bef9ff7dc0 |
parent 60185 | cc71f01f9fde |
child 72319 | 76bb6dd505c0 |
permissions | -rw-r--r-- |
27063 | 1 |
\documentclass[11pt,a4paper]{article} |
60185
cc71f01f9fde
prefer lmodern, which produces scalable T1 fonts even with Debian-ized TeXLive;
wenzelm
parents:
57606
diff
changeset
|
2 |
\usepackage{lmodern} |
57002
97a80d41a5ba
prefer T1 with searchable underscore (requires proper cm-super fonts);
wenzelm
parents:
48985
diff
changeset
|
3 |
\usepackage[T1]{fontenc} |
57606 | 4 |
\usepackage{tikz} |
5 |
\usepackage{subfigure} |
|
57002
97a80d41a5ba
prefer T1 with searchable underscore (requires proper cm-super fonts);
wenzelm
parents:
48985
diff
changeset
|
6 |
\usepackage[nohyphen,strings]{underscore} |
14586 | 7 |
\usepackage{amsmath} |
48943
54da920baf38
more standard document preparation within session context;
wenzelm
parents:
42511
diff
changeset
|
8 |
\usepackage{isabelle,isabellesym} |
27063 | 9 |
\usepackage{verbatim} |
32981 | 10 |
\usepackage{alltt} |
14586 | 11 |
\usepackage{array} |
12 |
||
27063 | 13 |
\usepackage{amssymb} |
14 |
||
48943
54da920baf38
more standard document preparation within session context;
wenzelm
parents:
42511
diff
changeset
|
15 |
\usepackage{pdfsetup} |
27063 | 16 |
|
27078 | 17 |
\isadroptag{theory} |
27063 | 18 |
\isafoldtag{proof} |
19 |
||
20 |
% urls in roman style, theory text in typewriter |
|
14586 | 21 |
\urlstyle{rm} |
22 |
\isabellestyle{tt} |
|
27063 | 23 |
|
14586 | 24 |
|
25 |
\begin{document} |
|
26 |
||
33838
a3166a169793
Publication details and minor correction of the text.
ballarin
parents:
32983
diff
changeset
|
27 |
\title{Tutorial to Locales and Locale Interpretation% |
a3166a169793
Publication details and minor correction of the text.
ballarin
parents:
32983
diff
changeset
|
28 |
\thanks{Published in L.~Lamb\'an, A.~Romero, J.~Rubio, editors, {\em Contribuciones Cient\'{\i}ficas en honor de Mirian Andr\'es.} Servicio de Publicaciones de la Universidad de La Rioja, Logro\~no, Spain, 2010. Reproduced by permission.}} |
27063 | 29 |
\author{Clemens Ballarin} |
14586 | 30 |
\date{} |
31 |
||
32 |
\maketitle |
|
33 |
||
34 |
\begin{abstract} |
|
32983 | 35 |
Locales are Isabelle's approach for dealing with parametric |
36 |
theories. They have been designed as a module system for a |
|
37 |
theorem prover that can adequately represent the complex |
|
38 |
inter-dependencies between structures found in abstract algebra, but |
|
39 |
have proven fruitful also in other applications --- for example, |
|
40 |
software verification. |
|
27063 | 41 |
|
32983 | 42 |
Both design and implementation of locales have evolved considerably |
43 |
since Kamm\"uller did his initial experiments. Today, locales |
|
44 |
are a simple yet powerful extension of the Isar proof language. |
|
45 |
The present tutorial covers all major facilities of locales. It is |
|
46 |
intended for locale novices; familiarity with Isabelle and Isar is |
|
47 |
presumed. |
|
14586 | 48 |
\end{abstract} |
49 |
||
50 |
\parindent 0pt\parskip 0.5ex |
|
51 |
||
52 |
\input{session} |
|
53 |
||
27063 | 54 |
\bibliographystyle{abbrv} |
14586 | 55 |
\bibliography{root} |
56 |
||
57 |
\end{document} |
|
27063 | 58 |
|
59 |
%%% Local Variables: |
|
60 |
%%% mode: latex |
|
61 |
%%% TeX-master: t |
|
62 |
%%% End: |