如何将 section*{something} 添加到内容表中?

如何将 section*{something} 添加到内容表中?

今天,我想制作Append A,B,C中的部分table of content。但是,我不知道该怎么做。

\documentclass[a4paper,cs4size,UTF8]{ctexart}                        
\usepackage{amsmath}                 
\usepackage{mathtools}
\usepackage{amssymb}             
\usepackage{times}                  
\usepackage{fancyhdr}               
\usepackage[colorlinks,linkcolor=blue,anchorcolor=blue,citecolor=red,unicode]{hyperref}                   
\usepackage{lastpage}                
\usepackage{pdfpages} 
\pagestyle{fancy}                      
\setlength{\headheight}{14.5pt}        
\fancyhf{}                            
\fancyhead[c]{常州大学本科生毕业论文}             
\fancyfoot[c]{第 \thepage 页,共\pageref*{LastPage}页} 

\begin{document}

\begin{titlepage}                           
 \tableofcontents                       
\end{titlepage} 

\section{Introduction}

\subsection{引言}
 babababababababbabababbabababbabababababbbaababbabababab
\newpage
\section*{Append A}
\newpage
\section*{Append B}
\newpage
\section*{Append C}
\end{document}                 

答案1

在以下之后使用\section*{...}

\addcontentsline{toc}{section}{Append A or any other text}

相关内容