When I make reference to paragraphs in Latex, I'd actually like it to say "subsubsubsubsection" (not my choice of formatting) instead of referring to "paragraph 1.0.0.1" in the document produced by the MWE. How can I replace the word "paragraph" in my document?
\documentclass{article}
\usepackage{hyperref}
\setcounter{secnumdepth}{4}
\begin{document}
\section{Section}
\label{sec:section}
Section here
\paragraph{paragraph}
\label{par:sample_par}
This is a reference to \autoref{par:sample_par}.
\end{document}

\newcommand{\subsubsubsection}{\paragraph}– egreg Mar 20 '21 at 15:40