自定义定理的显示

自定义定理的显示

我有一个定理,但我没有证明。我的意思是,我有一个段落,但我不希望它以单词开头Proof。相反,我希望只有段落的第一行缩进。

这是我目前所拥有的:

\documentclass[a4paper,12pt,twoside]{report}
\usepackage{mystyle}
\setlength{\headheight}{42pt}
\setlength{\parskip}{0.3cm}
\setlength{\parindent}{0pt}

\newtheorem{theorem}[lemma]{Theorem}

\begin{document}

\begin{theorem}
This is a theorem.
\end{theorem}
"Here begins the explanation
which is continued here
and here."

\end{document} 

我已经看到我可以\indent在它前面使用它,但是这并不适用于我的情况,因为我已经\setlength{\parindent}{0pt}在文档开始之前了。

我怎样才能仅缩进第一行?

相关内容