Проблема с оглавлением

Проблема с оглавлением

Мой tex-файл не создает оглавление при запуске в bash:

pdflatex myfile.tex

Я протестировал компиляцию того же tex-файла в overleaf, используя pdflatex в качестве компилятора, и он выдает 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}

Связанный контент