需要创建一个无编号的“结论”环境

需要创建一个无编号的“结论”环境

我需要conclusion在论文中不写数字。我用过

\newtheorem{conclusion}{Conclusion}
\begin{conclusion}
\end{conclusion}

并得到输出Conclusion 1;然而我只需要Conclusion

答案1

如何创建无编号定理类环境在很大程度上取决于您的文档是否加载amsthmntheorem包(或两者都不加载)。

  • 如果您使用该amsthm包,请使用\newtheorem*宏来创建未编号的类似定理的环境。

    \newtheorem{conclusion}{Conclusion}
    \newtheorem*{concnonum}{Conclusion}
    
  • 如果您使用该ntheorem包,请发出指令\theoremstyle{nonumberplain}以切换到无编号定理样式;然后使用指令创建进一步的无编号定理类环境\newtheorem。例如,

    \newtheorem{conclusion}{Conclusion}
    \theoremstyle{nonumberplain}
    \newtheorem{concnonum}{Conclusion}
    

答案2

如果您想要的是类似定理的环境,Mico 的答案非常好。但对于论文,结论可以是未编号的部分(或子部分,取决于文本),恕我直言。所以我会做类似的事情:

\documentclass[12pt]{article}
\usepackage{lipsum}
\begin{document}
\section*{Conclusion}
\lipsum{1-2}
\end{document} 

相关内容