
我有一個奇怪的問題。如果我運行這個腳本:
\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}。謝謝你!