2016-11-04 32 views
-1

我尝试使用\renewcommand\thesection{}关闭我的LaTeX文档中的部分编号。 编号确实消失,但该部分的标题仍然缩进。关闭LaTeX中的部分编号

Section with numbering Section without numbering

的«该部分的标题»应在其中«3»曾经是点。 我该怎么做?

回答

1

这是很简单的:使用\section*{Some Text}命令:

\documentstyle[12pt]{article} 

\begin{document} 

\section*{Some Text} 

Lorum ipsum ... 

\end{document} 

产量

enter image description here

+0

感谢您前面回答!它也删除了缩进。 – Alexander

+1

缩进是一种人为现象,并原谅我的直率,“你做错了”。您刚刚注释掉了该号码,但缩进仍然存在,作为默认显示的一部分。另一方面,'\ section * {}'命令_是为this_创建的,所以它正确无误;-) –