Как мне изменить категории авторекомендования по умолчанию, чтобы использовать автореферат с неподдерживаемыми языками? - PullRequest
0 голосов
/ 20 июня 2020

При использовании фрагмента кода

\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"

Как изменить вывод по умолчанию?

1 Ответ

0 голосов
/ 20 июня 2020
\documentclass[11pt]{article}
\usepackage{hyperref}


\renewcommand{\figureautorefname}{foo}
\renewcommand{\tableautorefname}{bar}
\renewcommand{\sectionautorefname}{foobar}
\renewcommand{\subsectionautorefname}{foobarbaz}

\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}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...