我遇到了一个奇怪的问题。如果我运行这个脚本:
\documentclass{article}
\usepackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@Book{Batty:2007,
author = {Michael Batty},
title = {Cities and Complexity},
publisher = {MIT Press},
year = 2007}
\end{filecontents*}
\begin{document}
This a citation \cite{Batty:2007}
\bibliographystyle{named}
\bibliography{\jobname}
\end{document}
在我的笔记本电脑上,它运行完美。如果我在 mt PC 上运行它(使用相同的操作系统和相同的 TexMaker 版本以及相同的配置),它会显示此问题:
如果我更改书目样式(例如 apalike),它会在每台计算机上运行,但我需要的是 \bibliographystyle{named}。谢谢!