在证明环境中,“证明”不会显示在 pdf 中证明的开头

在证明环境中,“证明”不会显示在 pdf 中证明的开头

我在描述环境内的解决方案环境中使用了证明环境。但是在编译我的 tex 文件后,在 pdf 文件中证明在证明的开头没有显示。

“solution” 是用户定义的定理样式,其参数如下:

\newtheoremstyle{solution}%
{}{}%
{}{-10pt}%
{\bfseries}{:}%
{\newline}%
{}

除此之外,我不做任何改变。

我的序言中有一些相关内容:

\theoremstyle{definition}
\newtheorem*{lem}{Lemma}

我在我的 tex 文件中所做的操作如下:

\begin{description}
\item[1]
\begin{solution}

\begin{lem}
a lemma
\end{lem}

\begin{proof}
a proof
\end{proof}

\end{solution}
\end{description}

答案1

后面需要一些文字\begin{solution}

\documentclass{article}
\usepackage{amsthm}

\newtheoremstyle{solution}
  {}
  {}
  {\normalfont}
  {-10pt}
  {\bfseries}
  {:}
{0pt}%  {\newline}
  {}

\theoremstyle{definition}
\newtheorem*{lem}{Lemma}

\theoremstyle{solution}
\newtheorem*{solution}{Solution}

\begin{document}

\begin{description}
\item[1]
\begin{solution}\mbox{}

\begin{lem}
a lemma
\end{lem}

\begin{proof}
a proof
\end{proof}

\end{solution}
\end{description}

\end{document}

在此处输入图片描述

相关内容