하이퍼참조의 역참조 옵션과 하위 캡션이 호환되지 않습니다.

하이퍼참조의 역참조 옵션과 하위 캡션이 호환되지 않습니다.

패키지 에 문제가 있습니다 subcaption.

테이블에 대한 역참조가 물음표로만 표시됩니다.

최소한의 작업 예

\RequirePackage{filecontents}

\begin{filecontents}{bibliography.bib}
@inproceedings{namespaces,
title = {Multiple instances of the global linux namespaces},
author = {Biederman, Eric},
booktitle = {Proceedings of the Linux Symposium},
year = {2006},
}
@MISC{kernel_2.4,
title = {Index of /pub/linux/kernel/v2.4},
author = {{The Linux Foundation}},
year = {2013},
}
@MISC{kernel_2.6,
title = {Index of /pub/linux/kernel/v2.6},
author = {{The Linux Foundation}},
year = {2014},
}
\end{filecontents}

\documentclass{report}
\usepackage[backref]{hyperref}
\usepackage{subcaption}

\begin{document}
\chapter{Loranium}
Lorem Ipsum
\section{notable}
this works \cite{namespaces}.
\chapter{Ipsonium}
\begin{table}
    \begin{tabular}{|l|l|l|l|}
        \hline
        A & B & C & D \\ \hline
        a & b & c & d \\ \hline
        a & b & c & d \cite{kernel_2.4} \\ \hline
        a & b & c & d \cite{kernel_2.6} \\ \hline
        a & b & c & d \cite{kernel_2.6} \\ \hline
        a & b & c & d \cite{kernel_2.6} \\ \hline
    \end{tabular}
    \caption{ABCD}
    \label{tab:abcd}
\end{table}

\bibliography{bibliography}
\bibliographystyle{unsrt}
\end{document}

답변1

관련 옵션은 backref=page페이지에 대한 올바른 링크를 삽입하는 이어야 합니다.

또한 hyperref패키지는 패키지 다음에 로드되어야 하는데 subcaption이는 이 최소 예제에서는 전혀 필요하지 않습니다.

\documentclass{report}

\usepackage{subcaption}



\usepackage[backref=page]{hyperref}


\begin{document}
\chapter{Loranium}
Lorem Ipsum
\section{notable}
this works \cite{namespaces}.
\chapter{Ipsonium}
\phantomsection
\begin{table}
    \begin{tabular}{|l|l|l|l|}
        \hline
        A & B & C & D \\ \hline
        a & b & c & d \\ \hline
        a & b & c & d \cite{kernel_2.4} \\ \hline
        a & b & c & d \cite{kernel_2.6} \\ \hline
        a & b & c & d \cite{kernel_2.6} \\ \hline
        a & b & c & d \cite{kernel_2.6} \\ \hline
    \end{tabular}
    \caption{ABCD}
    \label{tab:abcd}
\end{table}

\bibliographystyle{unsrt}
\bibliography{bibliography}
\end{document}

관련 정보