我在参考书目输出格式方面面临以下问题:每次引用后都会添加一个文本字符串“pages”(见图)
您怀疑可能出了什么问题吗?
我通过不导入包解决了这个问题反向引用。
使用反向引用包裹:
\documentclass{article}
\usepackage{backref}
\begin{document}
\thispagestyle{empty}
\section*{Section}
A citation lies here \cite{freeman:1977}.
\bibliography{bibliography}
\bibliographystyle{plain}
\end{document}
不使用反向引用包裹:
\documentclass{article}
%\usepackage{backref}
\begin{document}
\thispagestyle{empty}
\section*{Section}
A citation lies here \cite{freeman:1977}.
\bibliography{bibliography}
\bibliographystyle{plain}
\end{document}