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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
|
# keytheorems
A LaTeX package to use [`amsthm`](https://www.ctan.org/pkg/amsthm)
with a key-value interface. Meant to emulate most of the functionality of
[`thmtools`](https://www.ctan.org/pkg/thmtools) but written in expl3. If you
find a bug please open an issue or pull request.
The package is maintained by Matthew Bertucci.
## Sample document
```tex
\documentclass{article}
\usepackage{amssymb,amsmath}
\usepackage{keytheorems}
\usepackage{hyperref}
\newkeytheoremstyle{mystyle}{
% <insert options>
}
\newkeytheorem{theorem}[
style=mystyle,
parent=section
]
\newkeytheorem{remark}[
style=remark,
numbered=no
]
\begin{document}
\section{Some theorems}
\begin{theorem}[
note=Strong Bertini over $\mathbb{C}$,
label=strongbertini
]
Let $X$ be a smooth complex variety and let $\mathfrak{D}$ be a positive
dimensional linear system on $X$. Then the general element of $\mathfrak{D}$ is
smooth away from the base locus $B_{\mathfrak{D}}$. That is, the set
\[\{H\in\mathfrak{D}\mid D_H \text{ is smooth away from } B_{\mathfrak{D}}\}\]
is a Zariski dense open subset of $\mathfrak{D}$.
\end{theorem}
\begin{remark}
In fact, \autoref{strongbertini} holds over any algebraically closed field of
characteristic zero.
\end{remark}
\begin{theorem}[Bertini over any field]
Let $X\subset\mathbb{P}_k^n$ be a smooth projective variety over a field $k$.
Then the set of hyperplanes $H\subseteq\mathbb{P}_k^n$ such that $X\cap H$ is
smooth is a Zariski dense open subset of $(\mathbb{P}_k^n)^*$.
\end{theorem}
\listofkeytheorems
%%% compare with
%\listofkeytheorems[ignoreall,show=theorem]
%\listofkeytheorems[swapnumber]
%\listofkeytheorems[title=BLUB]
%\listofkeytheorems[print-body] % needs 'store-all' package option
\end{document}
```
## Documentation
There is a list of commands and keys offered by the package
[here](https://github.com/mbertucci47/keytheorems/blob/main/doc/keytheorems-doc.pdf).
More of a reference document than documentation.
## Differences with thmtools
Some of the code is a direct translation from thmtools but a few things are changed:
- The only backend supported is amsthm, and it is loaded by the package. As I understand it,
[`ntheorem`](https://www.ctan.org/pkg/ntheorem) has quite a few bugs and no active development, and
if you're just using the kernel `\newtheorem` then you don't need a package like this.
- Theorem hooks use the kernel hooks. Thus unlike the `prefoot` and `postfoot` hooks of
thmtools, all code chunks are added to hooks in the order declared (unless given a
distinct label; then the chunks are reversed). The order of generic/specific hooks
remains the same. Furthermore, the command for adding to theorem hooks is `\addtotheoremhook{<hook name>}{<theorem name>}`.
- thmtools changes some style settings to be default that are different from
amsthm defaults, but only if a custom style is called. Example:
```tex
\declaretheoremstyle[spaceabove=20pt]{mythmsty}
\declaretheorem[style=mythmsty]{mythm}
```
is different from just
```tex
\declaretheorem{mythm}
```
as in the former, `bodyfont` is `\normalfont`, not the default `\itshape`.
This package keeps the defaults unless a key is specifically given.
- There is no `restatable(*)` environment except with package option `thmtools-compat`. Use the
`store` (alias `restate`) key. For counters and labels pointing to the restated theorem,
use `store*` (alias `restate*`).
- Rather than `restate=foo` defining a command `\foo*`, theorems are retrieved with `\getkeytheorem{foo}`.
For just the theorem body, use `\getkeytheorem[body]{foo}`. Also, this retrieval
can happen even before the theorem is stated since keytheorems writes the contents
to a file.
- The `shaded` and `thmbox` keys are only available with the package option `thmtools-compat`,
and they are emulated with [`tcolorbox`](https://www.ctan.org/pkg/tcolorbox). Instead there's
an interface to tcolorbox with the `tcolorbox={<options>}` and `tcolorbox-no-titlebar={<options>}` key.
The `mdframed` key is not implemented.
- You can reuse styles with the `inherit-style` key.
- With thmtools, the command `\newtheorem{<envname>}{<heading>}` is changed to behave like
`\declaretheorem[name=<heading>]{<envname>}`. This is not the default here. Instead either
only use the new interface or load the package with option `overload`.
- Adds several new keys (see doc for details).
## thmtools issues resolved by keytheorems
Issues from the thmtools [github page](https://github.com/muzimuzhi/thmtools),
with corresponding keytheorems code that shows the issue resolved.
### [\listoftheorems: filter out restated ones #7](https://github.com/muzimuzhi/thmtools/issues/7)
keytheorems does not list restated theorems in the `\listofkeytheorems`.
```tex
\documentclass{article}
\usepackage{keytheorems}
\newkeytheorem{theorem}
\begin{document}
\begin{theorem}[store=foo]
text
\end{theorem}
\getkeytheorem{foo}
\listofkeytheorems
\end{document}
```
### [\listoftheorems: hide title #8](https://github.com/muzimuzhi/thmtools/issues/8)
keytheorems provides the `no-title` key.
```tex
\documentclass{article}
\usepackage{keytheorems}
\newkeytheorem{axiom}
\newkeytheorem{theorem}
\begin{document}
\listofkeytheorems[ignoreall,show=axiom]
\listofkeytheorems[ignoreall,show=theorem,no-title]
\begin{axiom}
some axiom
\end{axiom}
\begin{theorem}
some theorem
\end{theorem}
\begin{axiom}
another axiom
\end{axiom}
\begin{theorem}
another theorem
\end{theorem}
\end{document}
```
### [Case in point: the tcolorbox key #9](https://github.com/muzimuzhi/thmtools/issues/9)
keytheorems provides the `tcolorbox` and `tcolorbox-no-titlebar` keys.
```tex
\documentclass{article}
\usepackage{keytheorems}
\newkeytheorem{theorem}[
tcolorbox={
colback=blue!10,
colframe=blue!75
}
]
\newkeytheorem{corollary}[
tcolorbox-no-titlebar={colback=red!10}
]
\begin{document}
\begin{theorem}
some theorem
\end{theorem}
\begin{corollary}
some corollary
\end{corollary}
\end{document}
```
### [thm-listof: document \thmtformatoptarg, new list option? #14](https://github.com/muzimuzhi/thmtools/issues/14)
keytheorems provides the `note-code` key for `\listofkeytheorems` and
`\keytheoremlistset`.
```tex
\documentclass{article}
\usepackage{keytheorems}
\newkeytheorem{theorem}
\begin{document}
\begin{theorem}[my heading]
some theorem
\end{theorem}
\listofkeytheorems[note-code={ [\textit{#1}]}]
\end{document}
```
### [Style inheritance in thmtools #15](https://github.com/muzimuzhi/thmtools/issues/15)
keytheorems provides the `inherit-style` key.
```tex
\documentclass{article}
\usepackage{keytheorems}
\newkeytheoremstyle{mysty1}{notefont=\itshape}
\newkeytheoremstyle{mysty2}{inherit-style=mysty1,bodyfont=\normalfont}
\newkeytheorem{theorem}[style=mysty1]
\newkeytheorem{corollary}[style=mysty2]
\begin{document}
\begin{theorem}[my heading]
some theorem
\end{theorem}
\begin{corollary}[my heading]
some corollary
\end{corollary}
\end{document}
```
### [Restate without theorem headings (head + note) #19](https://github.com/muzimuzhi/thmtools/issues/19)
Use `\getkeytheorem[body]{foo}`.
```tex
\documentclass{article}
\usepackage{keytheorems}
\newkeytheorem{theorem}
\begin{document}
\begin{theorem}[store=hello]
Hello!
\end{theorem}
\getkeytheorem{hello}
\section{\getkeytheorem[body]{hello}}
\end{document}
```
### [Option clash: numbered=no and thmbox #25](https://github.com/muzimuzhi/thmtools/issues/25)
Fixed with keytheorem's implementation of the `thmbox` key with `thmtools-compat`.
```tex
\documentclass{article}
\usepackage[thmtools-compat]{keytheorems}
\declaretheorem[numbered=no, name=TheoremA, ]{mytheo1}
\declaretheorem[ name=TheoremB, thmbox=M]{mytheo2}
\declaretheorem[numbered=no, name=TheoremC, thmbox=M]{mytheo3}
\begin{document}
\begin{mytheo1}
test1
\end{mytheo1}
\begin{mytheo2}
test2
\end{mytheo2}
\begin{mytheo3}
test3
\end{mytheo3}
\end{document}
```
### [Skip the title of the theorem but leave the []. #30](https://github.com/muzimuzhi/thmtools/issues/30)
Fixed in keytheorems.
```tex
\documentclass{article}
\usepackage{keytheorems}
\newkeytheorem{Teorema}[name=Theorem]
\begin{document}
\begin{Teorema}
body
\end{Teorema}
\begin{Teorema}[]
body
\end{Teorema}
\begin{Teorema}[title]
body
\end{Teorema}
\end{document}
```
### [too much space with restatable #40](https://github.com/muzimuzhi/thmtools/issues/40)
Fixed in keytheorems.
```tex
\documentclass{article}
\usepackage{keytheorems}
\usepackage{kantlipsum}
\newkeytheorem{theorem}
\begin{document}
\begin{theorem}
\kant[2][1]
\end{theorem}
\begin{theorem}[store=foo]
\kant[1][2]
\end{theorem}
\begin{theorem}
\kant[2][1]
\end{theorem}
\getkeytheorem{foo}
\end{document}
```
### [restate key with no name leads to (,) in restated title #41](https://github.com/muzimuzhi/thmtools/issues/41)
Fixed in keytheorems.
```tex
\documentclass{article}
\usepackage{keytheorems}
\usepackage{kantlipsum}
\newkeytheorem{theorem}
\begin{document}
\begin{theorem}[restate=foo]
\kant[1][2]
\end{theorem}
\getkeytheorem{foo}
\begin{theorem}[restate=foobar,name=Heading]
\kant[2][1]
\end{theorem}
\getkeytheorem{foobar}
\end{document}
```
### [[Help Wanted] Print all Theorems? #43](https://github.com/muzimuzhi/thmtools/issues/43)
Use the `store-all` load-time option with `\listofkeytheorems[print-body]`.
```tex
\documentclass{article}
\usepackage[store-all]{keytheorems}
\newkeytheorem{theorem}
\newkeytheorem{lemma}
\begin{document}
\begin{theorem}
some theorem
\end{theorem}
\begin{lemma}
some lemma
\end{lemma}
\listofkeytheorems[print-body]
\end{document}
```
### [qed option without value fails in \declaretheoremstyle #47](https://github.com/muzimuzhi/thmtools/issues/47)
Fixed in keytheorems.
```tex
\documentclass{article}
\usepackage{keytheorems}
\newkeytheoremstyle{mythmsty}{qed}
\newkeytheorem{theorem}[style=mythmsty]
\begin{document}
\begin{theorem}
Text
\end{theorem}
\end{document}
```
### [prefoot and postfoot hooks called twice with restate key #54](https://github.com/muzimuzhi/thmtools/issues/54)
Fixed in keytheorems.
```tex
\documentclass{article}
\usepackage{keytheorems}
\newkeytheorem{theorem}
\addtotheoremhook{prehead}{PREHEAD}
\addtotheoremhook{posthead}{POSTHEAD}
\addtotheoremhook{prefoot}{PREFOOT}
\addtotheoremhook{postfoot}{POSTFOOT}
\begin{document}
\begin{theorem}
body text
\end{theorem}
\begin{theorem}[store=foo]
body text
\end{theorem}
\end{document}
```
### [restate key incompatible with beamer #58](https://github.com/muzimuzhi/thmtools/issues/58)
```tex
\documentclass{beamer}
\setbeamertemplate{theorems}[numbered]
\usepackage{keytheorems}
\newkeytheorem{MyTheorem}
\begin{document}
\begin{frame}
\begin{MyTheorem}[restate=foo]
text
\end{MyTheorem}
\getkeytheorem{foo}
\end{frame}
\end{document}
```
## Things to do
- Clean up the code. Things are out of order, poorly named, etc.
- Add more error messages.
- thmtools features not yet implemented
- real [`beamer`](https://ctan.org/pkg/beamer) support
- certainly more
- For a complete list, see [`keytheorems-ideas.md`](https://github.com/mbertucci47/keytheorems/blob/main/keytheorems-ideas.md)
## Notes/issues on thmtools, not on Github
### continues with unless unique and restate
Should this be numbered or not?
```tex
\documentclass{article}
\usepackage{amsthm,thmtools}
\declaretheorem[numbered=unless unique]{theorem}
\begin{document}
\begin{theorem}[label=foo]
bla
\end{theorem}
\begin{theorem}[continues=foo]
bla
\end{theorem}
\end{document}
```
It does the correct thing when a parent counter is given and is split across that counter.
```tex
\documentclass{article}
\usepackage{amsthm,thmtools}
\declaretheorem[numbered=unless unique,parent=section]{theorem}
\begin{document}
\begin{theorem}[label=foo]
bla
\end{theorem}
\section{bla}
\begin{theorem}[continues=foo]
bla
\end{theorem}
\end{document}
```
Also adds a number if restated, which seems wrong.
```tex
\documentclass{article}
\usepackage{amsthm,thmtools}
\declaretheorem[numbered=unless unique]{theorem}
\begin{document}
\begin{restatable}{theorem}{foo}
bla
\end{restatable}
\foo*
\end{document}
```
### qed in both `\declaretheoremstyle` and `\declaretheorem`
One would expect the one in `\declaretheorem` to overwrite, but because the code just adds to the hooks without checking,
it's additive.
```tex
\documentclass{article}
\usepackage{amsthm,thmtools}
\declaretheoremstyle[qed=$\clubsuit$]{mysty}
\declaretheorem[style=mysty,qed]{theorem}
\begin{document}
\begin{theorem}
bla
\end{theorem}
\end{document}
```
### restate incompatible with thmbox
```tex
\documentclass{article}
\usepackage{amsthm,thmtools}
\declaretheorem[thmbox]{theorem}
\begin{document}
\begin{theorem}[restate=foo]
bla
\end{theorem}
\foo*
\end{document}
```
### adding to listoftheorems doesn't work as expected
```tex
\documentclass{article}
\usepackage{amsthm,thmtools}
\declaretheorem{theorem}
\begin{document}
\begin{theorem}
bla
\end{theorem}
\addcontentsline{loe}{section}{some text}
\begin{theorem}
bla
\end{theorem}
\listoftheorems
\end{document}
```
### new theorem styles do not preserve "plain" keys
With keytheorems, this is handled only for the AMS classes and acmart.
```tex
\documentclass{amsbook}
\usepackage{thmtools}
\declaretheoremstyle[bodyfont=\upshape]{upsty}
\declaretheorem{theorem}
\declaretheorem[style=upsty]{lemma}
\begin{document}
\begin{theorem}
blub
\end{theorem}
\begin{lemma}
blub
\end{lemma}
\end{document}
```
## License
Released under the LaTeX Project Public License v1.3c or later. See https://www.latex-project.org/lppl.txt.
|