captionof、hyperref 和 autoref:错误的标签?

captionof、hyperref 和 autoref:错误的标签?

captionof这可能是对、hyperref\autoref命令中的一个(或多个)的滥用。

\documentclass{article}
\usepackage{caption}
\usepackage{hyperref}
\begin{document}

Some text and some more text.

\begin{figure}[htbp]
    \begin{minipage}[t]{0.5\linewidth}
        \centering
        This will be\par
        A figure

        \caption{A figure!\label{fig}}
    \end{minipage}%
    \begin{minipage}[t]{0.5\linewidth}
        \centering
        This will be\par
        A table

        \captionof{table}{A table!\label{tab}}
    \end{minipage}
\end{figure}

This is a figure: \autoref{fig} and this a table: \autoref{tab}.

\end{document}

\autoref周围环境弄糊涂了figure(我认为),它给出了:

在此处输入图片描述

有解决方法吗?我可以... Table~\ref{tab}这样做,但现在超链接只在数字上...

相关内容