I would like to create a document with the appearance of amsart, but with added \chapter command (styled as in amsbook, or differently). How can I do that?
I tried to make LaTeX load both amsbook and amsart by various combinations of \LoadClass and \documentclass, but it seems to be a failing strategy since they both define a lot of things using \newcommand, causing an infinity of errors.
I also realized I can't do it the other way around since I want to stick to the look of theorems as in amsart and not in amsbook.
I also know that I can, in theory, style it myself using titlesec, but it would be a lot of manual work to get the spacing of amsart's titles, and I would like to avoid doing that manually.
A MWE is the following:
%\documentclass[openany,11pt]{amsbook}
\documentclass[11pt]{amsart}
\newtheorem{lemma}{Lemma}[chapter]
\newtheorem{theorem}[lemma]{Theorem}
\begin{document}
\chapter{My Fair Chapter}
\section{Lovely section}
\begin{theorem} % Should show "Theorem" in bold, unintended.
I love ducks.
\end{theorem}
\end{document}


\tableofcontents? – egreg Apr 29 '15 at 14:14chapterthe toc layout is\def\l@chapter{\@tocline{0}{8pt plus1pt}{0pt}{}{}}\let\tocchapter\tocsection – David Carlisle Apr 09 '20 at 13:23