删除参考书目中的段落引用

删除参考书目中的段落引用

我正在使用 LaTeX,并且不断获得参考书目中每个条目旁边使用引用的段落编号(在屏幕截图中用红色标记)

在此处输入图片描述

我怎样才能删除这些段落指示符?

编辑:这是我第一次尝试最低限度的工作示例:

\documentclass{llncs}
\usepackage[latin9]{inputenc}
\usepackage{float}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage[unicode=true,pdfusetitle,
 bookmarks=true,bookmarksnumbered=false,bookmarksopen=false,
 breaklinks=false,pdfborder={0 0 1},backref=section,colorlinks=false]
 {hyperref}
\hypersetup{
 pdftex}
\usepackage{breakurl}

\makeatletter

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% LyX specific LaTeX commands.
\floatstyle{ruled}
\newfloat{algorithm}{tbp}{loa}
\providecommand{\algorithmname}{Algorithm}
\floatname{algorithm}{\protect\algorithmname}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% User specified LaTeX commands.


\usepackage{longtable}
\usepackage{algorithm}
\usepackage[noend]{algpseudocode}
\usepackage{listings}
\graphicspath{{images/}}
\newtheorem{axiom}{Axiom}
\newtheorem{claimx}{Claim}
\let\doendproof\endproof
\renewcommand{\endproof}{~\hfill\qed\doendproof}

\@ifundefined{showcaptionsetup}{}{%
 \PassOptionsToPackage{caption=false}{subfig}}
\usepackage{subfig}
\makeatother

\begin{document}

...我在这里有我的文档...然后我添加了参考书目

\bibliographystyle{splncs03}
\bibliography{references}

答案1

在你的hyperref设置中

backref=section

通过hyperref手动的

将“反向链接”文本作为章节编号列表添加到参考书目中每个项目的末尾。这只有在每个 后面都有一个空行时才能正常工作\bibitem。支持的值为sectionslidepagenonefalse。如果没有给出值,则将 章节 作为默认值。

因此,为了摆脱反向引用,请删除此行,或backref=false改为发出问题。

相关内容