How can I prevent the \listofalgorithms from being indented? I tried everything I could find on the internet, but the index of my algorithms refused to be aligned along with the title.
Here is a MWE:
\documentclass{article}
\usepackage{nomencl}
\usepackage{mathtools}
\usepackage{algorithm}
\usepackage{algpseudocode}
\numberwithin{algorithm}{section}
\begin{document}
\renewcommand{\nomname}{List of Algorithms}
\listofalgorithms
\newpage
\section{Introduction}\noindent
Text\\
\begin{algorithm}[H]
\caption{Caption}
\label{algo:caption}
\begin{algorithmic}[1]
\State hello world
\end{algorithmic}
\end{algorithm}
\end{document}
Any help is appreciated. Thanks!
