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 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250
|
% !TeX program = pdflatex
\documentclass[paper=a4, pagesize, DIV=20,
english,
headings=small,11pt,
titlepage=false,
numbers=noendperiod
]{scrreprt}
\addtokomafont{sectioning}{\rmfamily}
\usepackage[T1]{fontenc}
\usepackage[charter]{mathdesign}
\usepackage{luximono}
\usepackage[scaled]{helvet}
\usepackage[dvipsnames]{xcolor}
\usepackage{doc,shortvrb,xspace}
\makeatletter
% to be fixed at some point...
\let\PrintDescribeMacro\@gobble
\let \PrintDescribeEnv\@gobble
\let \PrintMacroName\@gobble
\let \PrintEnvName\@gobble
\makeatother
\CodelineNumbered
\usepackage{listings}
\usepackage{amsmath, amsthm}
\usepackage{enumitem}
\setlist[description, 1]{labelindent=2em, leftmargin=2em, rightmargin=2em, labelwidth=!}
\usepackage{tikz}
\usetikzlibrary{tikzmark}
\usepackage{nameref}
\usepackage{hyperref}
\hypersetup{
colorlinks,
linkcolor=RoyalBlue,
urlcolor=RoyalBlue,
linktoc=all
}
\usepackage{cleveref}[2010/05/01]
\usepackage{thmtools, thm-restate}
\usepackage[unq]{unique}
\providecommand\pkg[1]{\textsf{#1}}
\providecommand\Thmtools{\pkg{Thmtools}\xspace}
\providecommand\thmtools{\pkg{thmtools}\xspace}
\providecommand\oarg[1]{\texttt{[}\textit{#1}\texttt{]}}
\providecommand\marg[1]{\texttt{\{}\textit{#1}\texttt{\}}}
\providecommand\clap{\makebox[0pt][c]}
\newcommand\key[2][\keydefaultcontext]{%
% todo: create an index from this...
\paragraph*{\texttt{#2}}
}
\newcommand\change[2]{%
(\textbf{#1: \textsf{#2}})%
}
\lstloadlanguages{[LaTeX]TeX}
\lstset{language=[LaTeX]TeX,basicstyle=\small\ttfamily,keywordstyle=\mdseries,aboveskip=0pt}
\lstnewenvironment{preamble}[1][]{%
\lstset{backgroundcolor=\color{Purple!15},#1}%
}{%
}
\lstnewenvironment{body}[1][]{%
\lstset{backgroundcolor=\color{Yellow!30},#1}%
}{%
}
\newenvironment{source}{%
\par\noindent\strut\minipage[t]{0.61\linewidth}
}{%
\endminipage
}
\newenvironment{result}{%
\hfill\minipage[t]{0.37\linewidth}
\vspace{1pt}%
}{%
\endminipage\strut\par
\vspace{3pt}%
}
%\MakeShortVerb{\|}
\lstMakeShortInline{|}
\declaretheorem{theorem}
\declaretheorem[numberwithin=section]{theoremS}
\declaretheorem[name=\"Ubung]{exercise}
\declaretheorem[sibling=theorem]{lemma}
\declaretheorem[numbered=no,
name=Euclid's Prime Theorem]{euclid}
\declaretheorem[numbered=unless unique]{singleton}
\declaretheorem[numbered=unless unique]{couple}
\declaretheorem[style=remark]{remark}
\declaretheorem{Theorem}
\declaretheorem[shaded={bgcolor=Lavender,
textwidth=12em}]{BoxI}
\declaretheorem[shaded={rulecolor=Lavender,
rulewidth=2pt, bgcolor={rgb}{1,1,1}}]{BoxII}
\declaretheorem[thmbox=L]{boxtheorem L}
\declaretheorem[thmbox=M]{boxtheorem M}
\declaretheorem[thmbox=S]{boxtheorem S}
\declaretheoremstyle[
spaceabove=6pt, spacebelow=6pt,
headfont=\normalfont\bfseries,
notefont=\mdseries, notebraces={(}{)},
bodyfont=\normalfont,
postheadspace=1em,
qed=\qedsymbol
]{mystyle}
\declaretheorem[style=mystyle
]{styledtheorem}
\declaretheorem[name=Theorem, refname={theorem,theorems},
Refname={Theorem,Theorems}]{callmeal}
% make the full toc entry clickable while only the page number part is colored
% based on my own TeX-SX answer https://tex.stackexchange.com/a/555695
\usepackage{xpatch}
\makeatletter
\xpatchcmd\contentsline
{%
\csname l@#1\endcsname{%
\hyper@linkstart{link}{\Hy@tocdestname}{#2}\hyper@linkend
}{%
\hyper@linkstart{link}{\Hy@tocdestname}{#3}\hyper@linkend
}%
}
{%
\csname l@#1\endcsname{%
\begingroup
\def\@linkcolor{black}%
\hyper@linkstart{link}{\Hy@tocdestname}{#2}\hyper@linkend
\endgroup
}{%
\hyper@linkstart{link}{\Hy@tocdestname}{#3}\hyper@linkend
}%
}
{}{\fail}
% set default input path
\def\input@path{{../source/}}
\makeatother
\input{VERSION.tex}
\title{\Thmtools Users' Guide}
\author{2008–2014 Dr. Ulrich M. Schwarz -- ulmi@absatzen.de\thanks{%
who would like to thank the users for testing, encouragement, feature requests, and
bug reports. In particular, Denis Bitouz\'e prompted further improvement
when \thmtools got stuck in a ``good enough for me'' slump.}
\and
\rule{20pt}{0pt}2020-- Yukai Chou\rule{20pt}{0pt} % force newline
}
\date{\VERSION\\{\small\url{https://github.com/muzimuzhi/thmtools}}}
\begin{document}
\maketitle
\section*{\abstractname}
The \thmtools bundle is a collection of packages that is designed to
provide an easier interface to theorems, and to facilitate some more
advanced tasks.
If you are a first-time user and you don't think your requirements are out
of the ordinary, browse the examples in \autoref{cha:impatient}. If you're
here because the other packages you've tried so far just can't do what you
want, take inspiration from \autoref{cha:extravagant}. If you're a repeat
customer, you're most likely to be interested in the refence section in
\autoref{cha:reference}.
\begin{multicols}{2}[\section*{\contentsname}]
\makeatletter
\let\chapter\@gobbletwo
\tableofcontents
\end{multicols}
\clearpage
\chapter{\Thmtools for the impatient}\label{cha:impatient}
\section*{How to use this document}
This guide consists mostly of examples and their output, sometimes with a
few additional remarks. Since theorems are defined in the preamble and
used in the document, the snippets are two-fold:
\begin{source}
\begin{preamble}[gobble=4]
% Preamble code looks like this.
\usepackage{amsthm}
\usepackage{thmtools}
\declaretheorem{theorem}
\end{preamble}
\begin{body}[gobble=4]
% Document code looks like this.
\begin{theorem}[Euclid]
\label{thm:euclid}%
For every prime $p$, there is a prime $p'>p$.
In particular, the list of primes,
\begin{equation}\label{eq:1}
2,3,5,7,\dots
\end{equation}
is infinite.
\end{theorem}
\end{body}
\end{source}
\begin{result}
The result looks like this:
% \begin{theorem}[Euclid]
% For every prime $p$, there is a prime $p'>p$.
% In particular, there are infinitely many primes.
% \end{theorem}
\begin{restatable}[Euclid]{theorem}{firsteuclid}
\label{thm:euclid}%
For every prime $p$, there is a prime $p'>p$.
In particular, the list of primes,
\begin{equation}\label{eq:1}
2,3,5,7,\dots
\end{equation}
is infinite.
\end{restatable}
\end{result}
Note that in all cases, you will need a \emph{backend} to provide the
command |\newtheorem| with the usual behaviour. The \LaTeX\
kernel has a built-in backend which cannot do very much; the most common
backends these days are the \pkg{amsthm} and \pkg{ntheorem} packages.
Throughout this document, we'll use \pkg{amsthm}, and some of the features
won't work with \pkg{ntheorem}.
\section{Elementary definitions}
As you have seen above, the new command to define theorems is
|\declaretheorem|, which in its most basic form just takes the
name of the environment. All other options can be set through a key-val
interface:
\begin{source}
\begin{preamble}[gobble=4]
\usepackage{amsthm}
\usepackage{thmtools}
\declaretheorem[numberwithin=section]{theoremS}
\end{preamble}
\begin{body}[gobble=4]
\begin{theoremS}[Euclid]
For every prime $p$, there is a prime $p'>p$.
In particular, there are infinitely many primes.
\end{theoremS}
\end{body}
\end{source}
\begin{result}
\begin{restatable}[Euclid]{theoremS}{euclidii}
For every prime $p$, there is a prime $p'>p$.
In particular, there are infinitely many primes.
\end{restatable}
\end{result}
Instead of |numberwithin=|, you can also use |parent=| and
|within=|. They're all the same, use the one you find easiest to
remember.
Note the example above looks somewhat bad: sometimes, the name of the environment,
with the first
letter uppercased, is not a good choice for the theorem's title.
\begin{source}
\begin{preamble}[gobble=4]
\usepackage{amsthm}
\usepackage{thmtools}
\declaretheorem[name=\"Ubung]{exercise}
\end{preamble}
\begin{body}[gobble=4]
\begin{exercise}
Prove Euclid's Theorem.
\end{exercise}
\end{body}
\end{source}
\begin{result}
\begin{exercise}
Prove Euclid's Theorem.
\end{exercise}
\end{result}
To save you from having to look up the name of the key every time, you can
also use |title=| and |heading=| instead of |name=|; they do exactly
the same and hopefully one of these will be easy to remember for you.
Of course, you do not have to follow the abominal practice of numbering
theorems, lemmas, etc., separately:
\begin{source}
\begin{preamble}[gobble=4]
\usepackage{amsthm}
\usepackage{thmtools}
\declaretheorem[sibling=theorem]{lemma}
\end{preamble}
\begin{body}[gobble=4]
\begin{lemma}
For every prime $p$, there is a prime $p'>p$.
In particular, there are infinitely many primes.
\end{lemma}
\end{body}
\end{source}
\begin{result}
\begin{lemma}
For every prime $p$, there is a prime $p'>p$.
In particular, there are infinitely many primes.
\end{lemma}
\end{result}
Again, instead of |sibling=|, you can also use |numberlike=| and
|sharecounter=|.
Some theorems have a fixed name and are not supposed to get a number.
To this end, \pkg{amsthm} provides |\newtheorem*|, which is
accessible through \thmtools:
\begin{source}
\begin{preamble}[gobble=4]
\usepackage{amsthm}
\usepackage{thmtools}
\declaretheorem[numbered=no,
name=Euclid's Prime Theorem]{euclid}
\end{preamble}
\begin{body}[gobble=4]
\begin{euclid}
For every prime $p$, there is a prime $p'>p$.
In particular, there are infinitely many primes.
\end{euclid}
\end{body}
\end{source}
\begin{result}
\begin{euclid}
For every prime $p$, there is a prime $p'>p$.
In particular, there are infinitely many primes.
\end{euclid}
\end{result}
As a somewhat odd frill, you can turn off the number if there's only one
instance of the kind in the document. This might happen when you split and
join your papers into short conference versions and longer journal papers
and tech reports. Note that this doesn't combine well with the sibling
key: how do you count like somebody who suddenly doesn't count anymore?
Also, it takes an extra \LaTeX\ run to settle.
\begin{source}
\begin{preamble}[gobble=4]
\usepackage{amsthm}
\usepackage{thmtools}
\usepackage[unq]{unique}
\declaretheorem[numbered=unless unique]{singleton}
\declaretheorem[numbered=unless unique]{couple}
\end{preamble}
\begin{body}[gobble=4]
\begin{couple}
Marc \& Anne
\end{couple}
\begin{singleton}
Me.
\end{singleton}
\begin{couple}
Buck \& Britta
\end{couple}
\end{body}
\end{source}
\begin{result}
\begin{couple}
Marc \& Anne
\end{couple}
\begin{singleton}
Me.
\end{singleton}
\begin{couple}
Buck \& Britta
\end{couple}
\end{result}
\change{New}{2020/08/01} Actually, the mandatory argument of |\declaretheorem| accepts a list of environment names, so you can define similar theorems at once. Moreover, similar to |\setmainfont| from \pkg{fontspec} package, the key-value interface can be used both before and after the mandatory argument.
\begin{source}
\begin{preamble}[gobble=4]
\declaretheorem[numberwithin=section]
{theorem, definition}
\declaretheorem{lemma, proposition, corollary}[
style=plain,
numberwithin=theorem
]
\end{preamble}
\end{source}
\clearpage
\section{Frilly references}
In case you didn't know, you should: \pkg{hyperref}, \pkg{nameref} and
\pkg{cleveref} offer ways of ``automagically'' knowing that
|\label{foo}| was inside a theorem, so that a reference adds the
string ``Theorem''. This is all done for you, but there's one catch: you
have to tell \thmtools\ what the name to add is. By default, it will use
the title of the theorem, in particular, it will be uppercased.
(This happens to match the guidelines of all
publishers I have encountered.) But there is an alternate spelling
available, denoted by a capital letter, and in any case, if you use
\pkg{cleveref}, you should give two values separated by a comma, because
it will generate plural forms if you reference many theorems in one
|\cite|.
\begin{source}
\begin{preamble}[gobble=6]
\usepackage{amsthm, thmtools}
\usepackage{
hyperref,%\autoref
% n.b. \Autoref is defined by thmtools
cleveref,% \cref
% n.b. cleveref after! hyperref
}
\declaretheorem[name=Theorem,
refname={theorem,theorems},
Refname={Theorem,Theorems}]{callmeal}
\end{preamble}
\begin{body}[gobble=6]
\begin{callmeal}[Simon]\label{simon}
One
\end{callmeal}
\begin{callmeal}\label{garfunkel}
and another, and together,
\autoref{simon}, ``\nameref{simon}'',
and \cref{garfunkel} are referred
to as \cref{simon,garfunkel}.
\Cref{simon,garfunkel}, if you are at
the beginning of a sentence.
\end{callmeal}
\end{body}
\end{source}
\begin{result}
\begin{callmeal}[Simon]\label{simon}
One
\end{callmeal}
\begin{callmeal}\label{garfunkel}
and another, and together, \autoref{simon}, ``\nameref{simon}'',
and \cref{garfunkel} are referred to as \cref{simon,garfunkel}.
\Cref{simon,garfunkel}, if you are at the beginning of a sentence.
\end{callmeal}
\end{result}
\section{Styling theorems}
\label{sec:styling}
The major backends provide a command |\theoremstyle| to switch
between looks of theorems. This is handled as follows:
\begin{source}
\begin{preamble}[gobble=4]
\usepackage{amsthm}
\usepackage{thmtools}
\declaretheorem[style=remark]{remark}
\declaretheorem{Theorem}
\end{preamble}
\begin{body}[gobble=4]
\begin{Theorem}
Note how it still retains the default style,
`plain'.
\end{Theorem}
\begin{remark}
This is a remark.
\end{remark}
\end{body}
\end{source}
\begin{result}
\begin{Theorem}
Note how it still retains the default style,
`plain'.
\end{Theorem}
\begin{remark}
This is a remark.
\end{remark}
\end{result}
\newpage
Thmtools also supports the \pkg{shadethm} and \pkg{thmbox} packages:
\begin{source}
\begin{preamble}[gobble=4]
\usepackage{amsthm}
\usepackage{thmtools}
\usepackage[dvipsnames]{xcolor}
\declaretheorem[shaded={bgcolor=Lavender,
textwidth=12em}]{BoxI}
\declaretheorem[shaded={rulecolor=Lavender,
rulewidth=2pt, bgcolor={rgb}{1,1,1}}]{BoxII}
\end{preamble}
\begin{body}[gobble=4]
\begin{BoxI}[Euclid]
For every prime $p$, there is a prime $p'>p$.
In particular, there are infinitely many primes.
\end{BoxI}
\begin{BoxII}[Euclid]
For every prime $p$, there is a prime $p'>p$.
In particular, there are infinitely many primes.
\end{BoxII}
\end{body}
\end{source}
\begin{result}
\begin{BoxI}
For every prime $p$, there is a prime $p'>p$.
In particular, there are infinitely many primes.
\end{BoxI}
\begin{BoxII}
For every prime $p$, there is a prime $p'>p$.
In particular, there are infinitely many primes.
\end{BoxII}
\end{result}
As you can see, the color parameters can take two forms: it's either the
name of a color that is already defined, without curly braces, or it can
start with a curly brace, in which case it is assumed that
|\definecolor{colorname}|$\langle$\textsl{what you said}$\rangle$ will be
valid \LaTeX\ code. In our case, we use the |rgb| model to manually specify
white. (|shadethm|'s default background color is {\fboxsep=0pt \fcolorbox{black}[gray]{0.92}{\phantom{XX}}} |[gray]{0.92}|)
For the \pkg{thmbox} package, use the |thmbox| key:
\begin{source}
\begin{preamble}[gobble=4]
\usepackage{amsthm}
\usepackage{thmtools}
\declaretheorem[thmbox=L]{boxtheorem L}
\declaretheorem[thmbox=M]{boxtheorem M}
\declaretheorem[thmbox=S]{boxtheorem S}
\end{preamble}
\begin{body}[gobble=4]
\begin{boxtheorem L}[Euclid]
For every prime $p$, there is a prime $p'>p$.
In particular, there are infinitely many primes.
\end{boxtheorem L}
\begin{boxtheorem M}[Euclid]
For every prime $p$, there is a prime $p'>p$.
In particular, there are infinitely many primes.
\end{boxtheorem M}
\begin{boxtheorem S}[Euclid]
For every prime $p$, there is a prime $p'>p$.
In particular, there are infinitely many primes.
\end{boxtheorem S}
\end{body}
\end{source}
\begin{result}
\begin{boxtheorem L}[Euclid]
For every prime $p$, there is a prime $p'>p$.
In particular, there are infinitely many primes.
\end{boxtheorem L}
\begin{boxtheorem M}[Euclid]
For every prime $p$, there is a prime $p'>p$.
In particular, there are infinitely many primes.
\end{boxtheorem M}
\begin{boxtheorem S}[Euclid]
For every prime $p$, there is a prime $p'>p$.
In particular, there are infinitely many primes.
\end{boxtheorem S}
\end{result}
Note that for both |thmbox| and |shaded| keys, it's quite possible they will not
cooperate with a style key you give at the same time.
\subsection{Declaring new theoremstyles}
\Thmtools\ also offers a new command to define new theoremstyles. It is
partly a frontend to the |\newtheoremstyle| command of \pkg{amsthm} or
\pkg{ntheorem}, but it offers (more or less successfully) the settings of both to
either. So we are talking about the same things, consider the sketch in
\autoref{fig:params}. To get a result like that, you would use something
like
\begin{source}
\begin{preamble}[gobble=4]
\declaretheoremstyle[
spaceabove=6pt, spacebelow=6pt,
headfont=\normalfont\bfseries,
notefont=\mdseries, notebraces={(}{)},
bodyfont=\normalfont,
postheadspace=1em,
qed=\qedsymbol
]{mystyle}
\declaretheorem[style=mystyle]{styledtheorem}
\end{preamble}
\begin{body}[gobble=4]
\begin{styledtheorem}[Euclid]
For every prime $p$\dots
\end{styledtheorem}
\end{body}
\end{source}
\begin{result}
\begin{styledtheorem}[Euclid]
For every prime $p$\dots
\end{styledtheorem}
\end{result}
Again, the defaults are reasonable and you don't
have to give values for everything.
There is one important thing you cannot see in this example: there are
more keys you can pass to |\declaretheoremstyle|: if \thmtools\ cannot
figure out at all what to do with it, it will pass it on to the
|\declaretheorem| commands that use that style. For example, you may use
the |boxed| and |shaded| keys here.
To change the order in which title, number and note appear, there is a key
|headformat|. Currently, the values ``margin'' and ``swapnumber'' are
supported. The daring may also try to give a macro here that uses the
commands |\NUMBER|, |\NAME| and |\NOTE|.
You cannot circumvent the fact
that |headpunct| comes at the end, though, nor the fonts and braces you
select with the other keys.
\begin{figure}
\centering
\fbox{%
\begin{tikzpicture}[
remember picture,
>=latex,
nodes={
font=\normalfont\sffamily\itshape\small,
RoyalBlue
},
every subnode/.style={
inner sep=0pt
},
tip/.style={|<->|}
]
\node[black, font=\Large, text width=.618\textwidth, align=justify]
{%
which resulted in the following insight: \\
\subnode{space above}{\rule{0pt}{1.3\baselineskip}} \\
\subnode{head indent}{\strut\hspace*{4em}}
\textbf{%
\subnode{head}{Theorem} 1.2
\subnode{note brace}{(}%
\subnode{note}{\textit{Euclid}})%
\subnode{head punct}{.} %
}
\subnode{post head space}{\strut\hspace*{4.5em}}
For every prime~$p$, there is a prime~$p'>p$. In particular, the list
of primes, $2,3,5,7,\dots$, is infinite. \hfill
\subnode{qed}{$\Box$} \\
\subnode{space below}{\rule{0pt}{1.3\baselineskip}} \\
As a consequence, lorem ipsum dolor sit amet frob-%nicate foo
% paret.
};
\draw[tip] (space above.south west) -- node[right] {spaceabove} (space above.north west);
\draw[tip] (head indent.west) -- node[above] {headindent} (head indent.east);
\draw (head.center) -- +(0, 10pt) node[above] {headfont};
\draw (note brace.north) -- +(0, 20pt) node[above] {notebraces};
\draw (note.center) -- +(0, 10pt) node[above] {notefont};
\draw (head punct.base east) -- +(0, 28pt) node[above] {headpunct};
\draw[tip] (post head space.west) -- node[above] {postheadspace} (post head space.east);
\node at ([xshift=-12pt]qed.150) {qed};
\draw[tip] (space below.south west) -- node[right] {spacebelow} (space below.north west);
\end{tikzpicture}%
}
\caption{Settable parameters of a theorem style.}
\label{fig:params}
\end{figure}
\section{Repeating theorems}
Sometimes, you want to repeat a theorem you have given in full earlier,
for example you either want to state your strong result in the
introduction and then again in the full text, or you want to re-state a
lemma in the appendix where you prove it. For example, I lied about
\autoref{thm:euclid} on p.\,\pageref{thm:euclid}: the true code used was
\begin{source}
\begin{preamble}[gobble=6]
\usepackage{thmtools, thm-restate}
\declaretheorem{theorem}
\end{preamble}
\begin{body}[gobble=6]
\begin{restatable}[Euclid]{theorem}{firsteuclid}
\label{thm:euclid}%
For every prime $p$, there is a prime $p'>p$.
In particular, the list of primes,
\begin{equation}\label{eq:1}
2,3,5,7,\dots
\end{equation}
is infinite.
\end{restatable}
\end{body}
and to the right, I just use
\begin{body}[gobble=6]
\firsteuclid*
\vdots
\firsteuclid*
\end{body}
\end{source}
\begin{result}
\firsteuclid*
\vdots
\firsteuclid*
\end{result}
Note that in spite of being a theorem-environment, it gets number one all
over again. Also, we get equation number~\eqref{eq:1} again. The star in
|\firsteuclid*| tells thmtools that it should redirect the label
mechanism, so that this reference: \autoref{thm:euclid} points to
p.\,\pageref{thm:euclid}, where the unstarred environment is used. (You can
also use a starred environment and an unstarred command, in which case the
behaviour is reversed.) Also, if you use \pkg{hyperref} (like you see in this manual), the links will lead you
to the unstarred occurence.
Just to demonstrate that we also handle more involved cases, I repeat
another theorem here, but this one was numbered within its section: note
we retain the section number which does not fit the current section:
\begin{source}
\begin{body}[gobble=6]
\euclidii*
\end{body}
\end{source}
\begin{result}
\euclidii*
\end{result}
\section{Lists of theorems}
To get a list of theorems with default formatting, just use
|\listoftheorems|:
\begin{source}
\begin{body}[gobble=6]
\listoftheorems
\end{body}
\end{source}
\begin{result}
\let\chapter\section
\let\clearpage\relax
\listoftheorems
\end{result}
Not everything might be of the same importance, so you can filter out
things by environment name:
\begin{source}
\begin{body}[gobble=6]
\listoftheorems[ignoreall,
show={theorem,Theorem,euclid}]
\end{body}
\end{source}
\begin{result}
\let\chapter\section
\let\clearpage\relax
\listoftheorems[ignoreall, show={theorem,Theorem,euclid}]
\end{result}
And you can also restrict to those environments that have an optional
argument given. Note that two theorems disappear compared to the previous
example. You could also say just |onlynamed|, in which case it will
apply to \emph{all} theorem environments you have defined.
\begin{source}
\begin{body}[gobble=6]
\listoftheorems[ignoreall,
onlynamed={theorem,Theorem,euclid}]
\end{body}
\end{source}
\begin{result}
\let\chapter\section
\let\clearpage\relax
\listoftheorems[ignoreall, onlynamed={theorem,Theorem,euclid}]
\end{result}
As might be expected, the heading given is defined in |\listtheoremname|.
%And finally, you can configure |\listoftheorems| in advance by |\setlisttheoremstyle{keys}|.
\section{Extended arguments to theorem environments}
Usually, the optional argument of a theorem serves just to give a note
that is shown in the theorem's head. \Thmtools\ allows you to have a
key-value list here as well. The following keys are known right now:
\begin{description}
\item[name] This is what used to be the old argument. It usually holds
the name of the theorem, or a source. This key also accepts an
\emph{optional} argument, which will go into the list of theorems. Be
aware that since we already are within an optional argument, you have to
use an extra level of curly braces:
|\begin{theorem}[name={[Short name]A long name,...]}|
\item[label] This will issue a |\label| command after the head. Not very
useful, more of a demo.
\item[continues] Saying |continues=foo| will cause the number that is
given to be changed to |\ref{foo}|, and a text is added to the note.
(The exact text is given by the macro |\thmcontinues|, which takes the
label as its argument.)
\item[restate] Saying |restate=foo| will hopefully work like
wrapping this theorem in a restatable environment. (It probably still fails
in cases that I didn't think of.) This key also accepts an optional
argument: when restating, the restate key is replaced by this argument,
for example, |restate=[name=Boring rehash]foo| will result in a
different name. (Be aware that it is possible to give the same key
several times, but I don't promise the results. In case of the name key,
the names happen to override one another.)
\end{description}
\begin{source}
\begin{body}[gobble=6]
\begin{theorem}[name=Keyed theorem,
label=thm:key]
This is a
key-val theorem.
\end{theorem}
\begin{theorem}[continues=thm:key]
And it's spread out.
\end{theorem}
\end{body}
\end{source}
\begin{result}
\begin{theorem}[name=Keyed theorem,
label=thm:key]
This is a key-val theorem.
\end{theorem}
\begin{theorem}[continues=thm:key]
And it's spread out.
\end{theorem}
\end{result}
\chapter{\Thmtools for the extravagant}\label{cha:extravagant}
This chapter will go into detail on the slightly more technical offerings
of this bundle. In particular, it will demonstrate how to use the general
hooks provided to extend theorems in the way you want them to behave.
Again, this is done mostly by some examples.
\section{Understanding \thmtools' extension mechanism}
\Thmtools\ draws most of its power really only from one feature:
the |\newtheorem| of the backend will, for example, create
a theorem environment, i.e. the commands |\theorem| and
|\endtheorem|. To add functionality, four places immediately
suggest themselves: ``immediately before'' and ``immediately after'' those
two.
There are two equivalent ways of adding code there: one is to call
|\addtotheorempreheadhook| and its brothers and sisters
|...postheadhook|, |...prefoothook|
and |...postfoothook|.
All of these take an \emph{optional} argument, the name of the
environment, and the new code as a mandatory argument. The name of environment is
optional because there is also a set of ``generic'' hooks added to every
theorem that you define.
The other way is to use the keys |preheadhook| et al. in your
|\declaretheorem|. (There is no way of accessing the generic
hook in this way.)
The hooks are arranged in the following way: first the specific prehead,
then the generic one. Then, the original |\theorem| (or
whatever) will be called. Afterwards, first the specific posthead again,
then the generic one. (This means that you cannot wrap the head alone in
an environment this way.) At the end of the theorem, it is the other way
around: first the generic, then the specific, both before and after that
|\endtheorem|. This means you can wrap the entire theorem
easily by adding to the prehead and the postfoot hooks. Note that
\thmtools\ does not look inside |\theorem|, so you cannot get
inside the head formatting, spacing, punctuation in this way.
In many situations, adding static code will not be enough. Your code can
look at |\thmt@envname|, |\thmt@thmname| and
|\thmt@optarg|, which will contain the name of the environment,
its title, and, if present, the optional argument (otherwise, it is
|\@empty|).
\emph{However}, you should not make assumptions about the optional
argument in the preheadhook: it might still be key-value, or it might
already be what will be placed as a note. (This is because the key-val
handling itself is added as part of the headkeys.)
\section{Case in point: the \texttt{shaded} key}
Let us look at a reasonably simple example: the |shaded| key, which we've
already seen in the first section. You'll observe that we run into a
problem similar to the four-hook mess: your code may either want to modify
parameters that need to be set beforehand, or it wants to modify the
environment after it has been created. To hide this from the user, the
code you define for the key is actually executed twice, and
|\thmt@trytwice{A}{B}| will execute A on the first pass, and B
on the second. Here, we want to add to the hooks, and the hooks are only
there in the second pass.
\DocInput{thmdef-shaded.dtx}
\section{Case in point: the \texttt{thmbox} key}
\DocInput{thmdef-thmbox.dtx}
\section{Case in point: the \texttt{mdframed} key}
\DocInput{thmdef-mdframed.dtx}
\section{How \thmtools\ finds your extensions}
Up to now, we have discussed how to write the code that adds functionality
to your theorems, but you don't know how to activate it yet.
Of course, you can put it in your preamble, likely embraced by
|\makeatletter| and |\makeatother|, because you are
using internal macros with @ in their name (viz.,
|\thmt@envname| and friends). You can also put them into a
package (then, without the |\makeat...|),
which is simply a file ending in |.sty| put somewhere that \LaTeX\ can find
it, which can then be loaded with |\usepackage|.
To find out where exactly that is, and if you'd need to update
administrative helper files such as a filename database FNDB,
please consult the documentation of your \TeX\ distribution.
Since you most likely want to add keys as well, there is a shortcut that
\thmtools\ offers you: whenever you use a key |key| in a
|\declaretheorem| command, and \thmtools\ doesn't already know
what to do with it, it will try to |\usepackage{thmdef-key}| and
evaluate the key again. (If that doesn't work, \thmtools\ will cry
bitterly.)
For example, there is no provision in \thmtools\ itself that make the
|shaded| and |thmbox| keys described above special:
in fact, if you want to use a different package to create frames, you just
put a different |thmdef-shaded.sty| into a preferred texmf tree.
Of course, if your new package doesn't offer the old keys, your old
documents might break!
The behaviour for the keys in the style definition is slightly different:
if a key is not known there, it will be used as a ``default key'' to every
theorem that is defined using this style. For example, you can give the
|shaded| key in a style definition.
Lastly, the key-val arguments to the theorem environments themselves need
to be loaded manually, not least because inside the document it's too late
to call |\usepackage|.
\chapter{\Thmtools for the completionist}\label{cha:reference}
This will eventually contain a reference to all known keys, commands, etc.
\section{Known keys to \texttt{\textbackslash declaretheoremstyle}}
\def\keydefaultcontext{declaretheoremstyle}
N.b. implementation for \pkg{amsthm} and \pkg{ntheorem} is separate for
these, so if it doesn't work for \pkg{ntheorem}, try if it works with
\pkg{amsthm}, which in general supports more things.
Also, all keys listed as known to |\declaretheorem| are valid.
\key{spaceabove} Value: a length. Vertical space above the theorem,
possibly discarded if the theorem is at the top of the page.
\key{spacebelow} Value: a length. Vertical space after the theorem,
possibly discarded if the theorem is at the top of the page.
\key{headfont} Value: \TeX\ code. Executed just before the head of the
theorem is typeset, inside a group. Intended use it to put font switches here.
\key{notefont}
Value: \TeX\ code. Executed just before the note in the head is typeset, inside a group.
Intended use it to put font switches here. Formatting also applies to
the braces around the note.
Not supported by \pkg{ntheorem}.
\key{bodyfont}
Value: \TeX\ code. Executed before the begin part of the theorem ends,
but before all afterheadhooks. Intended use it to put font switches here.
\key{headpunct}
Value: \TeX\ code, usually a single character. Put at the end of the
theorem's head, prior to linebreaks or indents.
\key{notebraces}
Value: Two characters, the opening and closing symbol to use around a
theorem's note.
(Not supported by \pkg{ntheorem}.)
\key{postheadspace}
Value: a length. Horizontal space inserted after the entire head of the
theorem, before the body. Does probably not apply (or make sense) for
styles that have a linebreak after the head.
\key{headformat}
Value: \LaTeX\ code using the special placeholders |\NUMBER|, |\NAME|
and |\NOTE|, which correspond to the (formatted, including the braces
for |\NOTE| etc.) three parts of a theorem's head. This can be used to
override the usual style ``1.1 Theorem (Foo)'', for example to let the
numbers protude in the margin or put them after the name.
Additionally, a number of keywords are allowed here instead of \LaTeX\
code:
\begin{description}
\item[margin] Lets the number protrude in the (left) margin.
\item[swapnumber] Puts the number before the name. Currently
not working so well for unnumbered theorems.
\item[] \emph{This list is likely to grow}
\end{description}
\key{headindent}
Value: a length. Horizontal space inserted before the head. Some
publishers like |\parindent| here for remarks, for example.
\section{Known keys to \texttt{\textbackslash declaretheorem}}
\def\keydefaultcontext{declaretheorem}
\key{parent}
Value: a counter name. The theorem will be reset whenever that counter
is incremented. Usually, this will be a sectioning level, |chapter| or
|section|.
\key{numberwithin}
(Same as |parent|.)
\key{within}
(Same as |parent|.)
\key{sibling}
Value: a counter name. The theorem will use this counter for numbering.
Usually, this is the name of another theorem environment.
\key{numberlike}
(Same as |sibling|.)
\key{sharenumber}
(Same as |sibling|.)
\key{title}
Value: \TeX\ code. The title of the theorem. Default is the name of the
environment, with |\MakeUppercase| prepended. You'll have to give
this if your title starts with an accented character, for example.
\key{name}
(Same as |title|.)
\key{heading}
(Same as |title|.)
\key{numbered}
Value: one of the keywords |yes|, |no| or |unless unique|. The theorem
will be numbered, not numbered, or only numbered if it occurs more than
once in the document. (The latter requires another \LaTeX\ run and works well combined with |sibling|.)
\key{style}
Value: the name of a style defined with |\declaretheoremstyle| or
|\newtheoremstyle|. The theorem will use the settings of this style.
\key{preheadhook}
Value: \LaTeX\ code. This code will be executed at the beginning of the
environment, even before vertical spacing is added and the head is
typeset. However, it is already within the group defined by the
environment.
\key{postheadhook}
Value: \LaTeX\ code. This code will be executed after the call to the
original begin-theorem code. Note that all backends seem to delay
typesetting the actual head, so code here should probably enter
horizontal mode to be sure it is after the head, but this will change
the spacing/wrapping behaviour if your body starts with another list.
\key{prefoothook}
Value: \LaTeX\ code. This code will be executed at the end of the body
of the environment.
\key{postfoothook}
Value: \LaTeX\ code. This code will be executed at the end of the
environment, even after eventual vertical spacing, but still within the
group defined by the environment.
\key{refname}
Value: one string, or two strings separated by a comma (no spaces). This
is the name of the theorem as used by |\autoref|, |\cref| and friends. If it is
two strings, the second is the plural form used by |\cref|. Default
value is the value of |name|, i.e. usually the environment name, with
|\MakeUppercase| prepended.
\key{Refname}
Value: one string, or two strings separated by a comma (no spaces). This
is the name of the theorem as used by |\Autoref|, |\Cref| and friends. If it is
two strings, the second is the plural form used by |\Cref|. This can be
used for alternate spellings, for example if your style requests no
abbreviations at the beginning of a sentence. No default.
\key{shaded}
Value: a key-value list, where the following keys are possible:
\begin{description}
\item[textwidth]
The linewidth within the theorem.
\item[bgcolor]
The color of the background of the theorem. Either a color name or a
color spec as accepted by |\definecolor|, such as |{gray}{0.5}|.
\item[rulecolor]
The color of the box surrounding the theorem. Either a color name or
a color spec.
\item[rulewidth]
The width of the box surrounding the theorem.
\item[margin]
The length by which the shade box surrounds the text.
\end{description}
\key{thmbox}
Value: one of the characters |L|, |M| and |S|; see examples in \autoref{sec:styling}.
\section{Known keys to in-document theorems}
\def\keydefaultcontext{theorem}
\key{label} Value: a legal |\label| name.
Issues a |\label| command after the theorem's head.
\key{name} Value: \TeX\ code that will be typeset.
What you would have put in the optional argument in the
non-keyval style, i.e. the note to the head. This is \emph{not} the same
as the |name| key to |\declaretheorem|, you cannot override that from within
the document.
\key{listhack} Value: doesn't matter. (But put something to trigger
key-val behaviour, maybe |listhack=true|.) Linebreak styles in \pkg{amsthm}
don't linebreak if they start with another list, like an |enumerate|
environment. Giving the |listhack| key fixes that. \emph{Don't} give this
key for non-break styles, you'll get too little vertical space! (Just use
|\leavevmode| manually there.)
An all-around |listhack| that handles both situations might come in a
cleaner rewrite of the style system.
\section{Known keys to \texttt{\textbackslash listoftheorems}}
\def\keydefaultcontext{listof}
\key{title} Value: title of |\listoftheorems|. Initially |List of Theorems|.
\key{ignore} Value: list of theorem environment names. Filter out things by environment names. Default value is list of all defined theorem environments.
\key{ignoreall} Ignore every theorem environment. This key is usually followed by keys |show| and |onlynamed|.
\key{show} Value: list of theorem environments. Leave theorems that belong to specified list and filter out others. Default value is list of all defined theorem environments.
\key{showall} The opposite effect of |ignoreall|.
\key{onlynamed} Value: list of theorem environments. Leave things that are given an optional argument and belong to specified list, and filter out others. Default value is list of all defined theorem environments.
\key{swapnumber} Value: |true| or |false|. Initially |false| and default value is |true|. No default.
\begin{source}
\begin{body}[gobble=6]
\listoftheorems[ignoreall, onlynamed={lemma}]
\listoftheorems[ignoreall, onlynamed={lemma},
swapnumber
]
\end{body}
\end{source}
\begin{result}
\let\chapter\section
\let\clearpage\relax
\listoftheorems[ignoreall, onlynamed={lemma}]
\vspace{-1ex}
\listoftheorems[ignoreall, onlynamed={lemma}, swapnumber]
\end{result}
\key{numwidth} Value: a length. If |swapnumber=false|, the theorem number is typeset in a box of of width |numwidth|. Initially |1.5pc| for AMS classes and |2.3em| for others.
\section{Restatable -- hints and caveats}
TBD.
\begin{itemize}
\item Some counters are saved so that the same values appear when you
re-use them. The list of these counters is stored in the macro
|\thmt@innercounters| as a comma-separated list without spaces; default: |equation|.
\item To preserve the influence of other counters (think: equation
numbered per section and recall the theorem in another section), we need
to know all macros that are used to turn a counter into printed output.
Again, comma-separated list without spaces, without leading backslash, stored as
|\thmt@counterformatters|. Default:
|@alph,@Alph,@arabic,@roman,@Roman,@fnsymbol|.
All these only take
the \LaTeX\ counter |\c@foo| as arguments. If you bypass this and use
|\romannumeral|, your numbers go wrong and you get what you deserve.
Important if you have very strange numbering, maybe using greek letters
or somesuch.
\item I think you cannot have one stored counter within another one's
typeset representation. I don't think that ever occurs in reasonable
circumstances, either. Only one I could think of: multiple subequation
blocks that partially overlap the theorem. Dude, that doesn't even nest.
You get what you deserve.
\item |\label| and \pkg{amsmath}'s |\ltx@label| are disabled inside the
starred execution. Possibly, |\phantomsection| should be disabled as
well?
\end{itemize}
\appendix
\chapter{\Thmtools for the morbidly curious}\label{cha:sourcecode}
This chapter consists of the implementation of \thmtools, in case you
wonder how this or that feature was implemented. Read on if you want a
look under the bonnet, but you enter at your own risk, and bring an oily
rag with you.
\section{Core functionality}
\subsection{The main package}
\DocInput{thmtools.dtx}
\subsection{Adding hooks to the relevant commands}
\DocInput{thm-patch.dtx}
\subsection{The key-value interfaces}
\DocInput{thm-kv.dtx}
\subsection{Lists of theorems}
\DocInput{thm-listof.dtx}
\subsection{Re-using environments}
\DocInput{thm-restate.dtx}
\subsection{Fixing \texttt{autoref} and friends}
\DocInput{thm-autoref.dtx}
\section{Glue code for different backends}
\subsection{\texttt{amsthm}}
\DocInput{thm-amsthm.dtx}
\subsection{\texttt{beamer}}
\DocInput{thm-beamer.dtx}
\subsection{\texttt{ntheorem}}
\DocInput{thm-ntheorem.dtx}
\section{Generic tools}
\subsection{A generalized argument parser}
\DocInput{parseargs.dtx}
\subsection{Different counters sharing the same register}
\DocInput{aliasctr.dtx}
\subsection{Tracking occurrences: none, one or many}
\DocInput{unique.dtx}
\end{document}
|