Meu arquivo tex não está produzindo um índice quando executado no bash:
pdflatex myfile.tex
Testei a compilação do mesmo arquivo tex no verso, usando pdflatex como compilador, e ele produz o TOC conforme o esperado. Aqui está meu arquivo tex. Obrigado por qualquer ajuda
\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}