| author | blanchet | 
| Mon, 22 Jun 2015 16:56:03 +0200 | |
| changeset 60544 | 3daf5eacec05 | 
| parent 48985 | 5386df44a037 | 
| child 73746 | b2d47981c8dc | 
| permissions | -rw-r--r-- | 
| 293 | 1  | 
% iman.sty : Isabelle Manual Page Layout  | 
| 110 | 2  | 
%  | 
| 293 | 3  | 
\typeout{Document Style iman. Released 17 February 1994}
 | 
| 110 | 4  | 
|
| 293 | 5  | 
\hyphenation{Isa-belle man-u-script man-u-scripts ap-pen-dix mut-u-al-ly}
 | 
6  | 
\hyphenation{data-type data-types co-data-type co-data-types }
 | 
|
7  | 
||
8  | 
\let\ts=\thinspace  | 
|
| 110 | 9  | 
|
| 301 | 10  | 
%usage: \iflabelundefined{LABEL}{if not defined}{if defined}
 | 
11  | 
\newcommand{\iflabelundefined}[1]{\@ifundefined{r@#1}}
 | 
|
12  | 
||
13  | 
||
| 110 | 14  | 
%%%INDEXING use sedindex to process the index  | 
| 8827 | 15  | 
|
| 
10092
 
4295180d6bab
exchanged the declaration of "seealso" and loading of "makeidx" because the
 
paulson 
parents: 
9693 
diff
changeset
 | 
16  | 
\newcommand\seealso[2]{\emph{see also} #1}
 | 
| 8827 | 17  | 
\usepackage{makeidx}
 | 
18  | 
||
| 110 | 19  | 
%index, putting page numbers of definitions in boldface  | 
| 6747 | 20  | 
\def\bold#1{\textbf{#1}}
 | 
| 293 | 21  | 
\newcommand\fnote[1]{#1n}
 | 
| 110 | 22  | 
\newcommand\indexbold[1]{\index{#1|bold}}
 | 
23  | 
||
| 350 | 24  | 
%for indexing constants, symbols, theorems, ...  | 
25  | 
\newcommand\cdx[1]{{\tt#1}\index{#1@{\tt#1} constant}}
 | 
|
26  | 
\newcommand\sdx[1]{{\tt#1}\index{#1@{\tt#1} symbol}}
 | 
|
27  | 
||
28  | 
\newcommand\tdx[1]{{\tt#1}\index{#1@{\tt#1} theorem}}
 | 
|
29  | 
\newcommand\tdxbold[1]{{\tt#1}\index{#1@{\tt#1} theorem|bold}}
 | 
|
30  | 
||
31  | 
\newcommand\mltydx[1]{{\tt#1}\index{#1@{\tt#1} ML type}}
 | 
|
32  | 
\newcommand\xdx[1]{{\tt#1}\index{#1@{\tt#1} exception}}
 | 
|
33  | 
||
34  | 
\newcommand\ndx[1]{{\tt#1}\index{#1@{\tt#1} nonterminal}}
 | 
|
35  | 
\newcommand\ndxbold[1]{{\tt#1}\index{#1@{\tt#1} nonterminal|bold}}
 | 
|
36  | 
||
37  | 
\newcommand\cldx[1]{{\tt#1}\index{#1@{\tt#1} class}}
 | 
|
| 
3491
 
59ffc1c83403
Modified the \tydx command to set types in italics instead of \tt
 
paulson 
parents: 
3211 
diff
changeset
 | 
38  | 
\newcommand\tydx[1]{\textit{#1}\index{#1@{\textit{#1}} type}}
 | 
| 350 | 39  | 
\newcommand\thydx[1]{{\tt#1}\index{#1@{\tt#1} theory}}
 | 
40  | 
||
| 3187 | 41  | 
\newcommand\tooldx[1]{{\tt#1}\index{#1@{\tt#1} tool}}
 | 
| 3211 | 42  | 
\newcommand\settdx[1]{{\tt#1}\index{#1@{\tt#1} setting}}
 | 
| 3187 | 43  | 
|
| 3100 | 44  | 
%set argument in \tt font; at the same time, index using * prefix  | 
| 350 | 45  | 
\newcommand\rmindex[1]{{#1}\index{#1}\@}
 | 
| 110 | 46  | 
\newcommand\ttindex[1]{{\tt#1}\index{*#1}\@}
 | 
47  | 
\newcommand\ttindexbold[1]{{\tt#1}\index{*#1|bold}\@}
 | 
|
48  | 
||
49  | 
%set argument in \bf font and index in ROMAN font (for definitions in text!)  | 
|
50  | 
\newcommand\bfindex[1]{{\bf#1}\index{#1|bold}\@}
 | 
|
51  | 
||
52  | 
||
53  | 
%%% underscores as ordinary characters, not for subscripting  | 
|
54  | 
%% use @ or \sb for subscripting; use \at for @  | 
|
55  | 
%% only works in \tt font  | 
|
56  | 
%% must not make _ an active char; would make \ttindex fail!  | 
|
57  | 
\gdef\underscoreoff{\catcode`\@=8\catcode`\_=\other}
 | 
|
58  | 
\gdef\underscoreon{\catcode`\_=8\makeatother}
 | 
|
59  | 
\chardef\other=12  | 
|
60  | 
\chardef\at=`\@  | 
|
61  | 
||
62  | 
% alternative underscore  | 
|
63  | 
\def\_{\leavevmode\kern.06em\vbox{\hrule height.2ex width.3em}\hskip0.1em}
 | 
|
64  | 
||
65  | 
%%% \dquotes permits usage of "..." for \hbox{...} -- also taken from under.sty
 | 
|
66  | 
{\catcode`\"=\active
 | 
|
67  | 
\gdef\dquotes{\catcode`\"=\active  \let"=\@mathText}%
 | 
|
68  | 
\gdef\@mathText#1"{\hbox{\mathTextFont #1\/}}}
 | 
|
69  | 
\def\mathTextFont{\frenchspacing\tt}
 | 
|
| 6123 | 70  | 
\def\dquotesoff{\catcode`\"=\other}
 | 
| 110 | 71  | 
|
72  | 
%%%% meta-logical connectives  | 
|
73  | 
||
74  | 
\let\Forall=\bigwedge  | 
|
75  | 
\let\Imp=\Longrightarrow  | 
|
76  | 
\let\To=\Rightarrow  | 
|
| 7455 | 77  | 
\newcommand{\PROP}{\mathop{\mathrm{PROP}}}
 | 
78  | 
\newcommand{\Var}[1]{{?\!#1}}
 | 
|
79  | 
\newcommand{\All}[1]{\Forall#1.}  %quantification
 | 
|
| 110 | 80  | 
|
81  | 
%%%% ``WARNING'' environment  | 
|
82  | 
\def\dbend{\vtop to 0pt{\vss\hbox{\Huge\bf!}\vss}}
 | 
|
83  | 
\newenvironment{warn}{\medskip\medbreak\begingroup \clubpenalty=10000 
 | 
|
| 293 | 84  | 
\small %%WAS\baselineskip=0.9\baselineskip  | 
| 
39860
 
788e902f3c59
robustified "warn" environment if \parindent is zero (e.g. within itemize, description etc.);
 
wenzelm 
parents: 
10092 
diff
changeset
 | 
85  | 
\noindent \ifdim\parindent > 0pt\hangindent\parindent\else\hangindent1.5em\fi  | 
| 
 
788e902f3c59
robustified "warn" environment if \parindent is zero (e.g. within itemize, description etc.);
 
wenzelm 
parents: 
10092 
diff
changeset
 | 
86  | 
\hangafter=-2  | 
| 293 | 87  | 
         \hbox to0pt{\hskip-\hangindent\dbend\hfill}\ignorespaces}%
 | 
88  | 
        {\par\endgroup\medbreak}
 | 
|
| 110 | 89  | 
|
90  | 
||
91  | 
%%%% Standard logical symbols  | 
|
92  | 
\let\turn=\vdash  | 
|
93  | 
\let\conj=\wedge  | 
|
94  | 
\let\disj=\vee  | 
|
95  | 
\let\imp=\rightarrow  | 
|
96  | 
\let\bimp=\leftrightarrow  | 
|
| 293 | 97  | 
\newcommand\all[1]{\forall#1.}  %quantification
 | 
| 110 | 98  | 
\newcommand\ex[1]{\exists#1.}
 | 
99  | 
\newcommand{\pair}[1]{\langle#1\rangle}
 | 
|
100  | 
||
| 5752 | 101  | 
\newcommand{\lparr}{\mathopen{(\!|}}
 | 
102  | 
\newcommand{\rparr}{\mathclose{|\!)}}
 | 
|
103  | 
\newcommand{\fs}{\mathpunct{,\,}}
 | 
|
104  | 
\newcommand{\ty}{\mathrel{::}}
 | 
|
105  | 
\newcommand{\asn}{\mathrel{:=}}
 | 
|
106  | 
\newcommand{\more}{\ldots}
 | 
|
107  | 
\newcommand{\record}[1]{\lparr #1 \rparr}
 | 
|
| 5765 | 108  | 
\newcommand{\dtt}{\mathord.}
 | 
| 5752 | 109  | 
|
| 110 | 110  | 
\newcommand\lbrakk{\mathopen{[\![}}
 | 
111  | 
\newcommand\rbrakk{\mathclose{]\!]}}
 | 
|
112  | 
\newcommand\List[1]{\lbrakk#1\rbrakk}  %was \obj
 | 
|
113  | 
\newcommand\vpile[1]{\begin{array}{c}#1\end{array}}
 | 
|
| 5752 | 114  | 
\newenvironment{matharray}[1]{\[\begin{array}{#1}}{\end{array}\]}
 | 
| 9693 | 115  | 
\newcommand{\Text}[1]{\mbox{#1}}
 | 
| 110 | 116  | 
|
| 7976 | 117  | 
\DeclareMathSymbol{\dshsym}{\mathalpha}{letters}{"2D}
 | 
118  | 
\newcommand{\dsh}{\mathit{\dshsym}}
 | 
|
119  | 
||
| 110 | 120  | 
\let\int=\cap  | 
121  | 
\let\un=\cup  | 
|
122  | 
\let\inter=\bigcap  | 
|
123  | 
\let\union=\bigcup  | 
|
124  | 
||
125  | 
\def\ML{{\sc ml}}
 | 
|
126  | 
\def\OBJ{{\sc obj}}
 | 
|
| 350 | 127  | 
\def\AST{{\sc ast}}
 | 
| 110 | 128  | 
|
129  | 
%macros to change the treatment of symbols  | 
|
130  | 
\def\relsemicolon{\mathcode`\;="303B}   %treat ; like a relation
 | 
|
131  | 
\def\binperiod{\mathcode`\.="213A}   %treat . like a binary operator
 | 
|
132  | 
\def\binvert{\mathcode`\|="226A}     %treat | like a binary operator
 | 
|
133  | 
||
134  | 
%redefinition of \sloppy and \fussy to use \emergencystretch  | 
|
135  | 
\def\sloppy{\tolerance2000 \hfuzz.5pt \vfuzz.5pt \emergencystretch=15pt}
 | 
|
136  | 
\def\fussy{\tolerance200 \hfuzz.1pt \vfuzz.1pt \emergencystretch=0pt}
 | 
|
137  | 
||
| 7169 | 138  | 
%non-bf version of description  | 
139  | 
\def\descrlabel#1{\hspace\labelsep #1}
 | 
|
140  | 
\def\descr{\list{}{\labelwidth\z@ \itemindent-\leftmargin\let\makelabel\descrlabel}}
 | 
|
141  | 
\let\enddescr\endlist  | 
|
142  | 
||
| 110 | 143  | 
% The mathcodes for the letters A, ..., Z, a, ..., z are changed to  | 
| 
140
 
3a8c68d1d466
changed itmath trickery to be compatible with NFSS (itmath.sty)
 
nipkow 
parents: 
110 
diff
changeset
 | 
144  | 
% generate text italic rather than math italic by default. This makes  | 
| 110 | 145  | 
% multi-letter identifiers look better. The mathcode for character c  | 
| 3096 | 146  | 
% is set to |"7000| (variable family) + |"400| (text italic) + |c|.  | 
| 
140
 
3a8c68d1d466
changed itmath trickery to be compatible with NFSS (itmath.sty)
 
nipkow 
parents: 
110 
diff
changeset
 | 
147  | 
%  | 
| 3096 | 148  | 
\DeclareSymbolFont{italics}{\encodingdefault}{\rmdefault}{m}{it}%
 | 
| 110 | 149  | 
\def\@setmcodes#1#2#3{{\count0=#1 \count1=#3
 | 
| 
140
 
3a8c68d1d466
changed itmath trickery to be compatible with NFSS (itmath.sty)
 
nipkow 
parents: 
110 
diff
changeset
 | 
150  | 
\loop \global\mathcode\count0=\count1 \ifnum \count0<#2  | 
| 
 
3a8c68d1d466
changed itmath trickery to be compatible with NFSS (itmath.sty)
 
nipkow 
parents: 
110 
diff
changeset
 | 
151  | 
\advance\count0 by1 \advance\count1 by1 \repeat}}  | 
| 3096 | 152  | 
\@setmcodes{`A}{`Z}{"7\hexnumber@\symitalics41}
 | 
153  | 
\@setmcodes{`a}{`z}{"7\hexnumber@\symitalics61}
 |