我在论文中使用hyperref
BibTeX。当引用在普通文本中时,即创建指向参考书目的超链接,并在参考书目中创建指向章节的超链接时,一切都运行良好。
当参考文献位于表格中时,问题就开始了,图中的参考文献编号正确生成,但在参考书目中,超链接显示为问号,而不是它们所在的部分。有人知道该怎么办吗?我正在使用\citep{}
参考文献。
我的序言:
\documentclass[arial,paper=a4]{book}
%************************************
\usepackage{pstricks,pst-node}
\usepackage[numbers]{natbib}
\usepackage{nomencl}
\usepackage[nottoc]{tocbibind}
\usepackage{comment}
\usepackage{booktabs}
\usepackage{subfigure}
\usepackage{graphicx}
\usepackage{caption}
\usepackage{multirow}
%*************************Hyperlink***************************
\usepackage{graphicx}
\usepackage[bookmarksnumbered,colorlinks,backref,linktocpage=true]{hyperref}
\hypersetup{linkcolor=blue,citecolor=blue,}
************************************************************************
\makeindex
%**************************main body*************************
\begin{document}
\mainmatter
\include{Introduction}
\bibliographystyle{plain}
\bibliography{Bibliografia}
\end{document}
所以我在 bibTex 文件中的引用
@article{
Delbeke,
Author = {Delbeke, D. and Coleman, R. E. and Guiberteau, M. J. and Brown, M. L. and Royal, H. D. and Siegel, B. A. and Townsend, D. W. and Berland, L. L. and Parker, J. A. and Hubner, K. and Stabin, M. G. and Zubal, G. and Kachelriess, M. and Cronin, V. and Holbrook, S.},
Title = {Procedure guideline for tumor imaging with 18F-FDG PET/CT 1.0},
Journal = {J Nucl Med},
Volume = {47},
Number = {5},
Pages = {885-95},
Year = {2006} }
桌子
\begin{table*}[!ht]
\begin{center}
\begin{tabular*}{\textwidth}{@{}p{3.5cm}ccccp{0.5cm}cccp{5.0cm}cccp{4cm}ccccc@{}}
\multicolumn{4}{c}{}\\
\textbf{Category} &&& \textbf{Factor} &&& \textbf{Explanation} &&&\textbf{ Reference} \\
\hline
Patient Preparation &&& Fasting &&& \begin{minipage}[t]{0.3\columnwidth} patient should be inform not to consume any food or drink, except water, between 4 to 6 hours before the FDG application \end{minipage}&&& \begin{minipage}[t]{0.1\columnwidth} \citep{Delbeke}
\citep{Boellaard, Boellaard-Netherland, Niederkohr, Krause, Waxman} \end{minipage}
\end{tabular*}
\end{center}
\end{table*}
这就是参考书目和我引用的表格。表格中的所有引用都存在同样的问题。但带有问号的超链接可以正常工作,我的意思是它会转到正确的页面。
答案1
我认为表格和图形在 latex 中是浮动的。因此,您可以在 hyperref 中将 backref=page 作为选项,而不是指向部分。