These are the imports for my latex project. I am wondering how to fix the compile time following the warning, I don't know which package is causing it. Apparently, this question has been asked before but I am not using autonum package so I am not sure.
Package etex Warning: Extended allocation already in use.
etex.sty code will not be used.
To force etex package to load, add \RequirePackage{etex}
at the start of the document.
Latex:
\documentclass{article}
\usepackage[letterpaper, portrait, margin=1in]{geometry}
\usepackage[utf8]{inputenc}
\usepackage{setspace}
\usepackage{amsthm}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{mathtools}
\usepackage{float}
\usepackage{xcolor}
\usepackage{mathrsfs}
\usepackage{soul}
\usepackage{spverbatim}
\usepackage[pdfencoding=auto]{hyperref}
\usepackage{bookmark}% faster updated bookmarks
\usepackage{csquotes}
\usepackage{algorithm}
\usepackage{algpseudocode}
\usepackage{enumerate}
\usepackage{multicol}
\usepackage{fancyvrb}
\usepackage[super]{nth}
\usepackage{listings}
\usepackage{enumitem}
\usepackage{linegoal}
\usepackage{calc}
\usepackage{tocloft}
\usepackage{graphicx}
\usepackage{tikz-qtree}
\usepackage{forest}
\usepackage{titling}
\usepackage{subcaption}
\usepackage{abstract}
\usepackage{booktabs} % for the second rendering
\usepackage[nameinlink]{cleveref} % load this package *last*
\title{Warning issue}
\lstset{
basicstyle=\small\ttfamily,
columns=flexible,
breaklines=true
}
\date{February 2023}
\begin{document}
\maketitle
\section{Introduction}
\begin{lstlisting}
Package etex Warning: Extended allocation already in use. etex.sty code will not be used. To force etex package to load, add \RequirePackage{etex} at the start of the document.
\end{lstlisting}
\end{document}
hyperrefafterbooktabsand beforeclevereftoo, you have correctly identified thatcleverefshould be loaded last (% load this package *last*),hyperrefis the same except forglossaries,cleverefetc it is described in thehyperrefdocumentation (section 3 and 11) – JamesT Feb 21 '23 at 10:06