2016-11-04 57 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_創建的,所以它正確無誤;-) –