\bibliographystyle 문제

\bibliographystyle 문제

이상한 문제가 있습니다. 이 스크립트를 실행하면:

\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(동일한 OS, 동일한 TexMaker 버전, 동일한 구성)에서 실행하면 다음 문제가 표시됩니다.

여기에 이미지 설명을 입력하세요

참고문헌 스타일(예: apalike)을 변경하면 모든 컴퓨터에서 작동하지만 필요한 스타일은 \bibliographystyle{named}입니다. 감사합니다!

관련 정보