-
-
Notifications
You must be signed in to change notification settings - Fork 267
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into tagging721
# Conflicts: # required/latex-lab/changes.txt
- Loading branch information
Showing
6 changed files
with
3,403 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
2024-09-30 Frank Mittelbach <[email protected]> | ||
|
||
2024-09-30 Frank Mittelbach <[email protected]> | ||
* latex-lab-math.dtx (subsection{Content grabbing}): | ||
Correct logic for inserting below skips after displays (tagging/721) | ||
|
||
2024-09-26 Ulrike Fischer <[email protected]> | ||
* latex-lab-firstaid.dtx: add support for theorems declared with | ||
amsthm, amsart, amsbook, amsproc. | ||
|
||
2024-09-24 Ulrike Fischer <[email protected]> | ||
* latex-lab-sec.dtx,latex-lab-footnotes.dtx: | ||
correct and improve footnotes in longtable | ||
|
@@ -28,7 +32,6 @@ | |
engines. | ||
|
||
2024-09-02 Frank Mittelbach <[email protected]> | ||
|
||
* latex-lab-block.dtx (subsubsection{List tags}): | ||
Do not close LI and LBody if they were never opened because of a | ||
missing \item (issue tagging/641) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
% !Mode:: "TeX:DE:UTF-8:Main" | ||
\DocumentMetadata{testphase={phase-III,firstaid},debug={log=vv}} | ||
\input{regression-test} | ||
\RequirePackage{tagpdf-debug} | ||
\documentclass{amsart} | ||
|
||
\newtheorem{lem}{Lemma} | ||
\newtheorem*{KL}{Klein's Lemma} | ||
|
||
\theoremstyle{remark} | ||
\newtheorem{remark}{Remark}[section] | ||
|
||
\swapnumbers | ||
\newtheorem{theorem}[lem]{Theorem} | ||
|
||
\newtheoremstyle{mytheorem} | ||
{\topsep} | ||
{\topsep} | ||
{} | ||
{1em} | ||
{\bfseries} | ||
{.} | ||
{ } | ||
{% | ||
\@ifempty{#3} | ||
{\thmname{#1}\thmnumber{ #2}\thmnote{ (#3)}} | ||
{\thmname{#3}}% | ||
} | ||
|
||
\theoremstyle{mytheorem} | ||
\newtheorem{thm}{Theorem} | ||
|
||
\begin{document} | ||
\START | ||
\begin{lem}[name] some lemma \end{lem} | ||
|
||
\begin{KL} some lemma \end{KL} | ||
|
||
\begin{KL}[with addition] some lemma \end{KL} | ||
|
||
\begin{remark} remark \end{remark} | ||
|
||
\begin{theorem}\label{thm} theorem \end{theorem} | ||
|
||
\begin{thm}[name] thm\end{thm} | ||
|
||
\begin{thm} thm\end{thm} | ||
|
||
\begin{proof} | ||
some proof | ||
\end{proof} | ||
after the proof | ||
|
||
\ref{thm} | ||
\ShowTagging{debug/structures} | ||
\end{document} |
Oops, something went wrong.