При использовании фрагмента кода
\autoref{chapter:chapter1}
\autoref{table:table1}
\autoref{figure:figure1}
Минимальный код
\documentclass[11pt]{article}
\usepackage{hyperref}
\begin{document}
\subsection{my section}
\label{chapter:mychapter}
\begin{figure}[!ht]
\centering
\caption{foo.}
\label{fig:myfigure}
\end{figure}
As seen in\autoref{fig:myfigure} in \autoref{chapter:mychapter}
\end{document}
Вывод в тексте будет «раздел 1.1», «таблица 1.1» и «рисунок 1.1», но я
Пример:
"section 1.1" to "foo 1.1"
"table 1.1" to "bar 1.1"
"рисунок 1.1" на "foobar 1.1"
Как изменить вывод по умолчанию?