Problem beim Zusammenstellen der Bibliographie zu Gummi

Problem beim Zusammenstellen der Bibliographie zu Gummi

Ich versuche, mit den folgenden Tex-Befehlen und Gummi Zitate und eine Bibliografie im ApJ-Stil zu erstellen.

\documentclass[12pt]{article}

\usepackage{ natbib}
\citestyle{aa}
\begin{document}

\section{Introduction}

\cite{texbook}

\section{Conclusion} 

\cite{Narendra_1990}

\bibliography{Bib2}{}
\bibliographystyle{apj}

\end{document}

Ich erhalte jedoch ständig die folgende Fehlermeldung:

/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.

Meine Bibtex-Datei ist:

    @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}
}

texbookWenn ich die und Referenzen zitiere, Narendra_1990habe ich kein Problem. Erst wenn ich die 1994ApJS...95..107WReferenz einfüge, tritt der Fehler auf.

Jede Hilfe ist willkommen!

Antwort1

Wie Sie in der angegebenen Fehlermeldung lesen können

/tmp/.LatexEssay.tex.bbl:8: Undefined control sequence.
l.8 {Worthey}, G. 1994, \apjs
                         , 95, 107

Sie haben eine undefinierte Steuersequenz \apjs, die den Fehler verursacht. Ich vermute, sie sollte den Namen einer Zeitschrift enthalten. Fügen Sie also die Zeile @string {apjs = {The correct name of the journal}}(bitte den korrekten Namen) zu Ihrer bibDatei hinzu. Mit ein wenig Schöndruck könnte sie so aussehen:

@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},
}

Haben Sie das --Feld erkannt pages?

verwandte Informationen