Ian Jauslin
summaryrefslogtreecommitdiff
blob: d33a93d2d882ba71ae3235d8869cdc980bafb8b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
%%
%% iantheorem package:
%%   Ian's customized theorem command
%%

%% boolean to signal that this package was loaded
\newif\ifiantheo

%% TeX format
\NeedsTeXFormat{LaTeX2e}[1995/12/01]

%% package name
\ProvidesPackage{iantheo}[2016/11/10]

%% options
\newif\ifsectionintheo
\DeclareOption{section_in_theo}{\sectionintheotrue}
\DeclareOption{no_section_in_theo}{\sectionintheofalse}
\newif\ifsubsectionintheo
\DeclareOption{subsection_in_theo}{\subsectionintheotrue}
\DeclareOption{no_subsection_in_theo}{\subsectionintheofalse}

\def\iantheo@defaultoptions{
  \ExecuteOptions{section_in_theo, no_subsection_in_theo}
  \ProcessOptions

  %%% reset at every new section
  \ifsectionintheo
    \let\iantheo@oldsection\section
    \gdef\section{\setcounter{theocount}{0}\iantheo@oldsection}
  \fi

  %% reset at every new subsection
  \ifsubsectionintheo
    \let\iantheo@oldsubsection\subsection
    \gdef\subsection{\setcounter{theocount}{0}\iantheo@oldsubsection}
  \fi
}


%% delimiters
\def\delimtitle#1{
  \par%
  \leavevmode%
  \raise.3em\hbox to\hsize{%
    \lower0.3em\hbox{\vrule height0.3em}%
    \hrulefill%
    \ \lower.3em\hbox{#1}\ %
    \hrulefill%
    \lower0.3em\hbox{\vrule height0.3em}%
  }%
  \par\penalty10000%
}

%% callable by ref
\def\delimtitleref#1{
  \par%
%
  \ifdefined\ianclass%
    % hyperref anchor%
    \hrefanchor%
    % define tag (for \label)%
    \xdef\tag{#1}%
  \fi%
%
  \leavevmode%
  \raise.3em\hbox to\hsize{%
    \lower0.3em\hbox{\vrule height0.3em}%
    \hrulefill%
    \ \lower.3em\hbox{\bf #1}\ %
    \hrulefill%
    \lower0.3em\hbox{\vrule height0.3em}%
  }%
  \par\penalty10000%
}

%% no title
\def\delim{
  \par%
  \leavevmode\raise.3em\hbox to\hsize{%
    \lower0.3em\hbox{\vrule height0.3em}%
    \hrulefill%
    \lower0.3em\hbox{\vrule height0.3em}%
  }%
  \par\penalty10000%
}

%% end delim
\def\enddelim{
  \par\penalty10000%
  \leavevmode%
  \raise.3em\hbox to\hsize{%
    \vrule height0.3em\hrulefill\vrule height0.3em%
  }%
  \par%
}


%% theorem
% counter
\newcounter{theocount}
% booleans (write section or subsection in equation number)
\def\theo#1{
  \stepcounter{theocount}
  \ifdefined\ianclass
    % hyperref anchor
    \hrefanchor
  \fi
  % the number
  \def\formattheo{\thetheocount}
  % add subsection number
  \ifsubsectionintheo
    \let\tmp\formattheo
    \edef\formattheo{\thesubsectioncount.\tmp}
  \fi
  % add section number
  \ifsectionintheo
    \let\tmp\formattheo
    \edef\formattheo{\sectionprefix\thesectioncount.\tmp}
  \fi
  % define tag (for \label)
  \xdef\tag{\formattheo}
  % write
  \delimtitle{\bf #1 \formattheo}
}
\let\endtheo\enddelim
%% theorem headers with name
\def\theoname#1#2{
  \theo{#1}\hfil({\it #2})\par\penalty10000\medskip%
}


%% qed symbol
\def\qedsymbol{$\square$}
\def\qed{\penalty10000\hfill\penalty10000\qedsymbol}


%% compatibility with article class
\ifdefined\ianclasstrue
  \relax
\else
  \def\thesectioncount{\thesection}
  \def\thesubsectioncount{\thesubsection}
  \def\sectionprefix{}
\fi


%% prevent page breaks after displayed equations
\newcount\prevpostdisplaypenalty
\def\nopagebreakaftereq{
  \prevpostdisplaypenalty=\postdisplaypenalty
  \postdisplaypenalty=10000
}
%% back to previous value
\def\restorepagebreakaftereq{
  \postdisplaypenalty=\prevpostdisplaypenalty
}


%% end
\iantheo@defaultoptions
\endinput