如何删除章节标题和章节计数器?

如何删除章节标题和章节计数器?

这里,我有fakesection,像这样

\newcommand{\fakesection}[1]{%
  \par\refstepcounter{section}% Increase section counter
  \sectionmark{#1}% Add section mark (header)
  \addcontentsline{toc}{section}{\protect\numberline{\thesection}#1}% Add section to ToC
  % Add more content here, if needed.
}

其目的是为了不拥有section tile

平均能量损失

\documentclass[a4paper,12pt]{article}


\usepackage{hyperref}

\newcommand{\fakesection}[1]{%
  \par\refstepcounter{section}% Increase section counter
  %\sectionmark{#1}% Add section mark (header)
  \addcontentsline{toc}{section}{\protect\numberline{\thesection}#1}% Add section to ToC
  % Add more content here, if needed.
}


\begin{document}

\tableofcontents

\part{ Basic }
\fakesection{My section 08}
\fakesection{My section 09}
\fakesection{My section 10}
\fakesection{My section 11}

\part{ Intermediate }
\fakesection{My section 08}
\fakesection{My section 09}
\fakesection{My section 10}
\fakesection{My section 11}

\part{ Advanced }
\fakesection{My section 08}
\fakesection{My section 09}
\fakesection{My section 10}
\fakesection{My section 11}

\end{document}

我怎样才能删除其中的部分计数器toc?(保留标题)

在此处输入图片描述 也就是说,目录页应该是这样的,没有 1、2、3、4 等……

谢谢。

答案1

正如@daleif在评论中所建议的那样,

\newcommand{\fakesection}[1]{%
  \par\refstepcounter{section}% Increase section counter
  %\sectionmark{#1}% Add section mark (header)
  \addcontentsline{toc}{section}{ #1}% Add section to ToC
  % Add more content here, if needed.
}

非常有效。

相关内容