Estou tentando criar citações e bibliografia, no estilo ApJ, usando os comandos tex abaixo usando Gummi.
\documentclass[12pt]{article}
\usepackage{ natbib}
\citestyle{aa}
\begin{document}
\section{Introduction}
\cite{texbook}
\section{Conclusion}
\cite{Narendra_1990}
\bibliography{Bib2}{}
\bibliographystyle{apj}
\end{document}
No entanto, continuo recebendo o seguinte erro:
/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.
Meu arquivo 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}
}
Se eu citar as texbook
referências e Narendra_1990
não tenho problema. Somente quando incluo a 1994ApJS...95..107W
referência é que ocorre o erro.
Qualquer ajuda será apreciada!
Responder1
Como você pode ler na mensagem de erro fornecida
/tmp/.LatexEssay.tex.bbl:8: Undefined control sequence.
l.8 {Worthey}, G. 1994, \apjs
, 95, 107
você tem uma sequência de controle indefinida \apjs
que causa o erro. Acho que deveria conter o nome de um diário. Portanto, adicione a linha @string {apjs = {The correct name of the journal}}
(adicione o nome correto, por favor) ao seu bib
arquivo. Com uma impressão um pouco bonita, poderia ficar assim:
@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},
}
Você reconheceu o --
campo pages
?