目錄問題

目錄問題

在 bash 中運行時,我的 tex 檔案沒有產生目錄:

pdflatex myfile.tex

我已經測試過使用 pdflatex 作為編譯器在背面編譯相同的 tex 文件,並且它按預期生成 TOC。這是我的 tex 檔。謝謝你的幫助

\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{libertine}
\usepackage{textcomp}
\usepackage{lastpage}

\usepackage{geometry} 
\geometry{%
  paperheight=16cm, 
  paperwidth=21.3cm,
%  landscape,
  top=0.8cm,
  bottom=0.8cm,
  left=0.8cm,
  right=0.8cm,
  includehead,includefoot,
  heightrounded
}

\usepackage{fancyhdr} 
\pagestyle{fancy}
\fancyhf{}
\rhead{{\scriptsize This_Document}}
\cfoot{\thepage}
\setlength{\headheight}{14pt} % 
\renewcommand{\footrulewidth}{0.4pt} %Adds a line above the footer
\setlength{\headheight}{17.5pt} %Corrects header issue

\setlength\parindent{0pt}%

\title{Title}
\author{me}


\begin{document}

\maketitle
\newpage

\tableofcontents
\newpage

\section{One}
Hello world!\\
\section{Two}
Hello world2!\\

\end{document}

相關內容