我不知道如何解决这个问题。我需要在 amsthm 的 proof 环境中缩进单词“Proof”,而不使用 xpatch(xpatch 在此处描述在 amsthm 的环境证明中缩进“证明”一词)。
我想避免使用任何补丁,因为它们将来可能会停止工作。我只想使用 amsthm 包来做到这一点。
这是最低限度的工作代码:
\documentclass[12pt,a4paper]{book}
\usepackage{amsthm}
\usepackage{indentfirst}
\usepackage{lipsum}
\newtheoremstyle{sltheorem}
{2pt} % Space above
{-2pt} % Space below
{\it} % Theorem body font % (default is "\upshape")
{17pt} % Indent amount
{\scshape} % Theorem head font % (default is \mdseries)
{.} % Punctuation after theorem head % default: no punctuation
{ } % Space after theorem head
{Theorem \thetheorem} % Theorem head spec
\theoremstyle{sltheorem}
\newtheorem{theorem}{Theorem}[chapter]
\begin{document}
\chapter{one}
\lipsum[2]
\begin{theorem}
\lipsum[2]
\end{theorem}
\begin{proof}
\lipsum[2]
\end{proof}
\end{document}