在参考文献旁边添加页码

在参考文献旁边添加页码

我在 lyx 中使用 KOMA-script 撰写论文。我想在参考书目中将页码添加到参考文献旁边。类似这样的操作:

  1. SJ Young、G. Evermann、MJF Gales、T. Hain、D. Kershaw、G. Moore、J. Odell、D. Ollason、D. Povey、V. Valtchev 和 PC Woodland,《HTK 手册》,版本 3.4。英国剑桥:剑桥大学工程系,2006 年。[3][15][21]

数字[3],[15],[21]是所用文献的引用页码。

我的序言如下:

\usepackage[figure]{hypcap}
%\usepackage{tocbibind}
\usepackage[nottoc]{tocbibind}

% the pages of the TOC is numbered roman
% and a pdf-bookmark for the TOC is added
\let\myTOC\tableofcontents
\renewcommand\tableofcontents{%
  \frontmatter
  \pdfbookmark[1]{\contentsname}{}
  \myTOC
  \mainmatter }

% makes caption labels bold
\setkomafont{captionlabel}{\bfseries}
\setcapindent{1em}

% enables calculations
\usepackage{calc}

% fancy page header/footer settings
\renewcommand{\chaptermark}[1]{\markboth{#1}{#1}}
%\renewcommand{\sectionmark}[1]{\markright{\thesection\ #1}}

\renewcommand{\sectionmark}[1]{\markright{Section \thesection\ #1}}


% increases the bottom float placement fraction
\renewcommand{\bottomfraction}{0.5}

% avoids that floats are placed above its sections
\let\mySection\section\renewcommand{\section}{\suppressfloats[t]\mySection}

\pagestyle{plain} 
\newcommand*{\argmin}{\operatornamewithlimits{argmin}\limits}

参考书目使用 IEEETran。

答案1

您所请求的设施由套餐提供hyperrefbackrefhyperref必须说

\usepackage[pagebackref]{hyperref}  

或者

\usepackage[backref]{hyperref}

如果你收到类似这样的警告

The package hyperref has already been loaded with options: [unicode=true]

\hypersetup尝试通过类似方式加载选项

\hypersetup{backref}

或添加backref\documentclass选项

\documentclass[backref]{article} 

backref要了解更多详细信息,请参阅或包的手册hyperref

\begin{filecontents*}{backref.bib}
@article{Astrm2014,
  doi = {10.1016/j.automatica.2013.10.012},
  url = {http://dx.doi.org/10.1016/j.automatica.2013.10.012},
  year  = {2014},
  month = jan,
  publisher = {Elsevier {BV}},
  volume = {50},
  number = {1},
  pages = {3-43},
  author = {Karl J. {\AA}str\"{o}m and P. R. Kumar},
  title = {Control: {A} perspective},
  journal = {Automatica},
}
\end{filecontents*}

\documentclass{article}
\usepackage{cite}
\usepackage[pagebackref]{hyperref}


\begin{document}

\cite{Astrm2014}

\clearpage
\bibliographystyle{unsrt}
\bibliography{backref}

\end{document}

在此处输入图片描述

相关内容