从这里,我有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
正如@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.
}
非常有效。