如何更正目录中 \section* 的页码?

如何更正目录中 \section* 的页码?

在我的书中,我在一个带星号的章节中加入了两个带星号的部分。当我将章节添加到目录中时,

\addcontentsline{toc}{chapter}{Chapter title}

显示的页码是正确的。当我对该章的第一部分执行相同操作时,一切正常(因为它们在同一页中)

\addcontentsline{toc}{section}{First Section title}

但当我对第二个带星号的部分进行操作时

\addcontentsline{toc}{section}{Second Section title}

目录中的页码显示错误(它显示与章节和第一节相同的页面)。

我怎样才能更正目录中第二个带星号部分的页码?

我正在使用书籍课程。

感谢您的帮助。

编辑:

这是一个 MWE

\documentclass[letterpaper]{book}
\usepackage[spanish]{babel}
\usepackage{tocloft}

\begin{document}
\tableofcontents
\chapter{First chapter}
\section{Section Zero}
\addcontentsline{toc}{chapter}{Second Chapter}
\chapter*{Second Chapter}
\addcontentsline{toc}{section}{First Section}
\section*{First Section}
\newpage
\addcontentsline{toc}{section}{Second Section}
\section*{Second Section}

\end{document}

\include并且它有效!问题是,如果我通过以下方式添加章节,它不起作用:\chapter

相关内容