\documentclass[11pt,a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage{lipsum}
\usepackage{tocloft}
\begin{document}
\tableofcontents
\thispagestyle{empty}
\newpage
\section{Preface} %want section number to be 0
\thispagestyle{empty}
\pagenumbering{roman}
\lipsum[1-3]
\newpage
\section{Start From Here}
\lipsum[1-5]
\section{And So On...}
\lipsum[1-5]
\end{document}
Как я могу получитьразделнумерация начинается с 0?
Редактировать:Я знаю, что могу это сделать \section*{Preface}
, но это удалит его из ToC, а это не то, что мне нужно.
решение1
Просто вставьте \setcounter{section}{-1}
в преамбулу.
\documentclass[11pt,a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage{lipsum}
\usepackage{tocloft}
\setcounter{section}{-1}
\begin{document}
\tableofcontents
\newpage
\thispagestyle{empty}
\section{Preface} %want section number to be 0
\lipsum[1-3]
\newpage
\section{Start From Here}
\lipsum[1-5]
\section{And So On...}
\lipsum[1-5]
\end{document}