我正在嘗試使用 Gummi 使用下面的 tex 命令以 ApJ 風格建立引用和參考書目。
\documentclass[12pt]{article}
\usepackage{ natbib}
\citestyle{aa}
\begin{document}
\section{Introduction}
\cite{texbook}
\section{Conclusion}
\cite{Narendra_1990}
\bibliography{Bib2}{}
\bibliographystyle{apj}
\end{document}
但是,我不斷收到以下錯誤:
/tmp/.LatexEssay.tex.bbl:8: Undefined control sequence.
l.8 {Worthey}, G. 1994, \apjs
, 95, 107
/tmp/.LatexEssay.tex.bbl:8: ==> Fatal error occurred, no output PDF file produced!
Transcript written on /tmp/.LatexEssay.tex.log.
我的 Bibtex 檔是:
@Article{Narendra_1990,
author = {K.S.Narendra and K.Parthsarathy},
title = {Identification and Control of Dynamical System
using Neural Networks},
journal = "IEENN",
year = {1990},
volume = {1},
number = {1},
month = {},
pages = {4-27},
note = {},
annote = {}
@BOOK{texbook,
author = "Donald E. Knuth",
title= "The {{\TeX}book}",
publisher = "Addison-Wesley",
year = 1984
}
@ARTICLE{1994ApJS...95..107W,
author = {{Worthey}, G.},
title = "{Comprehensive stellar population models and the disentanglement of age and metallicity effects}",
journal = {\apjs},
year = 1994,
month = nov,
volume = 95,
pages = {107-149},
doi = {10.1086/192096},
adsurl = {http://adsabs.harvard.edu/abs/1994ApJS...95..107W},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
如果我引用texbook
和Narendra_1990
參考文獻我就沒有問題。僅當我包含1994ApJS...95..107W
引用時才會發生錯誤。
任何幫助表示讚賞!
答案1
正如您可以在給定的錯誤訊息中讀到的那樣
/tmp/.LatexEssay.tex.bbl:8: Undefined control sequence.
l.8 {Worthey}, G. 1994, \apjs
, 95, 107
您有一個未定義的控制序列\apjs
導致了錯誤。我想它應該包含一本期刊的名稱。因此,請將該行@string {apjs = {The correct name of the journal}}
(請新增正確的名稱)新增至您的bib
檔案。透過一些漂亮的列印,它可能看起來像這樣:
@string {apjs = {The correct name of the journal}}
@ARTICLE{1994ApJS...95..107W,
author = {{Worthey}, G.},
title = {{Comprehensive stellar population models and the disentanglement
of age and metallicity effects}},
journal = apjs,
year = {1994},
month = nov,
volume = {95},
pages = {107--149},
doi = {10.1086/192096},
adsurl = {http://adsabs.harvard.edu/abs/1994ApJS...95..107W},
adsnote = {Provided by the SAO/NASA Astrophysics Data System},
}
你認識--
in 字段pages
嗎?