参考书目条目上的页码

参考书目条目上的页码

当我引用参考书目中的项目时,引用发生的页码会出现在参考书目后面。例如:在图片中,末尾的数字“3”是引用此书目项目的页码。我不希望发生这种情况。

平均能量损失

\documentclass[a4paper,11pt,twoside]{report}

\usepackage{thesis}
\usepackage{epstopdf}
\usepackage{amsfonts}

\begin{document}

\pagenumbering{arabic}
\include{titlepage}

\normalsize
\tableofcontents

\input{Introduction}
\input{SystemDescription}
\input{ControllerDesign}
\input{ObserverDesign}
\input{LinearController}
\input{Comparison}
\input{Conclusion}
\input{Recommendation}
\bibliographystyle{ieeetr}
\bibliography{bibliography.bib}

\end{document}

在此处输入图片描述

答案1

由于 OP 没有提供可编译的 MWE,因此很难解决问题。但是,反向引用的行为通常与 hyperref 包有关,并调用反向引用的扩展选项,例如backref=truepagebackref=true

将这些选项设置为backref=falsepagebackref=false有助于禁用反向引用。有关更多信息,请参阅 hyperref 手册http://www.tug.org/applications/hyperref/manual.html

相关内容