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}
这样做,但现在超链接只在数字上...