标签: latex
我尝试使用\renewcommand\thesection{}关闭我的LaTeX documten中的部分编号。 编号确实消失了,但该部分的标题仍然缩进。
\renewcommand\thesection{}
«节的标题»应该是«3»的位置。 我怎么能这样做?
答案 0 :(得分:2)
更简单:使用\section*{Some Text}命令:
\section*{Some Text}
\documentstyle[12pt]{article} \begin{document} \section*{Some Text} Lorum ipsum ... \end{document}
产量