如何操作 \tableofcontents

如何操作 \tableofcontents

我希望目录不显示两次“Contents”一词。我该怎么做?代码如下。

\documentclass[12pt,a4paper]{article}
\usepackage[latin1]{inputenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{caption}
\usepackage{subfig}
\usepackage{multicol}
\usepackage{wrapfig}
\usepackage{booktabs}
\usepackage{float}
\usepackage{tocbibind}
\usepackage[toc,page]{appendix}
\usepackage{color}
\usepackage[square]{natbib}
\usepackage{isotope}
\usepackage{siunitx}
\usepackage{tabularx}
\usepackage{mhchem}
\usepackage{version}
\usepackage{hyperref}
\usepackage{hyperref,xcolor}
\definecolor{wine-stain}{rgb}{0.5,0,0}
\hypersetup{
  colorlinks,
  linkcolor=blue,
  citecolor=blue,
  linktoc=page
}
%\hypersetup{
 %   colorlinks,
  %  citecolor=blue,
   % filecolor=blue,
    %linkcolor=blue,
%    urlcolor=blue
%    linktoc=page
%}
\begin{document}


{\centering{
        {\huge\textbf{Title} \\
        \vspace{20pt}
        {\large Author} \\
        \vspace{20pt}
        \Large Subtitle \\
        \vspace{5pt}
        {\small Date}
        \vspace{5pt}
        \hrule
        \vspace{30pt}}}}
    \tableofcontents
    \addcontentsline{toc}{section}{Abstract}
    \section*{Abstract}
    \end{document}

答案1

你需要改变

\usepackage{tocbibind}

\usepackage[nottoc]{tocbibind}

的目的tocbibind 包是为了允许将目录、参考书目和索引纳入——您猜对了——目录中。

看看用户指南tocbibind 包的了解该包的用户选项--其中之一是nottoc

相关内容