目录页 - 包括罗马数字页码

目录页 - 包括罗马数字页码

我正在使用 MiKTex 2.9。我想将“缩写”页面以及罗马数字页码包含在目录页中。但是,当我使用命令时,\section{section name}它会为标题提供章节编号。当我使用时\section*{section name},标题不会出现在目录页中。我也尝试了使用 scrbook,如何隐藏目录中除几章之外的所有章节的页码?但我收到“未定义的控制错误”。

您能提供建议吗?我已附上我的 MWE。

    \documentclass[a4paper,11pt]{article}
\usepackage{color}
\usepackage{graphicx, epstopdf}
\usepackage{gensymb}
\usepackage{times}
\usepackage{adjustbox}
\usepackage{tabulary}
\usepackage{tabularx}
\usepackage{booktabs,caption, makecell}
\usepackage{pdflscape,afterpage,caption}
\usepackage[british]{babel}
\usepackage[backend=bibtex, citestyle=ieee, bibstyle=ieee]{biblatex}
\usepackage[section]{placeins}%Allows you to permanently fix figures. 

\begin{document}
\pagenumbering{roman}
\newpage
\tableofcontents
\newpage
\section*{Abbreviations}
\begin{table}[ht]
\setlength\tabcolsep{60pt}
\centering
  \small
 % your table
    \hspace*{-18mm}%
\begin{tabular}{cc}
\toprule
{Abbreviation}&{Explanation}\\ [0.5ex]
\midrule
Item1&Item1\\
Item1&Item1\\
Item1&Item1\\
Item1&Item1\\
Item1&Item1\\
Item1&Item1\\
Item1&Item1\\
Item1&Item1\\
\bottomrule
 \end{tabular}%
    \hspace*{-12mm}%
\label{table:ETD Raman}
\end{table}
\newpage
\pagenumbering{arabic}
\section{Test 1}
Video provides a powerful way to help you prove your point. When you click Online Video, you can paste in the embed code for the video you want to add. You can also type a keyword to search online for the video that best fits your document.

\end{document}

提前致谢!

答案1

\addcontentsline{<file>}{<kind>}{<text>}在 as之后立即使用标准 LaTeX 命令\section*{Abbreviations}

\section*{Abbreviations}
\addcontentsline{toc}{section}{Abbreviations}

这会将未编号的章节样式标题和页码放入.toc文件中,以便在目录中打印。

相关内容