Der Referenzstil der Abschlussarbeit ist nicht vollständig

Der Referenzstil der Abschlussarbeit ist nicht vollständig

Ich verwende "ieeetran" und den folgenden Code um die Referenz zu generieren (ohne URL-Informationen)

\bibliographystyle{IEEEtran}
\bibliography{IEEEfull,paper01Const}

Das Ergebnis lautet jedoch: „Y. Qian, „Design and Control of a Personal Assistant Robot“, Ph.D.-Dissertation.“

Und die generierten .bib-Dateien sind

@phdthesis{qian_design_2013,
  location = {{France}},
  title = {Design and {{Control}} of a {{Personal Assistant Robot}}},
  url = {https://tel.archives-ouvertes.fr/tel-00864692/document},
  abstract = {The purpose of this thesis is to design, model and control of a personal assistant robot used for domestic tasks. In order to make the robot's design more efficient, a virtual simulation system is built using dynamic simulation software. ...},
  pagetotal = {214},
  timestamp = {2017-07-06T15:44:04Z},
  langid = {english},
  institution = {{Ecole Centrale de Lille}},
  author = {Qian, Yang},
  urldate = {2016-02-25},
  date = {2013-07-04},
  file = {Full Text PDF:C\:\\Users\\Yan WEI\\AppData\\Roaming\\Zotero\\Zotero\\Profiles\\jf7ifsnc.default\\zotero\\storage\\35UHZBC4\\Qian - 2013 - Design and Control of a Personal Assistant Robot.pdf:application/pdf}
}

Wo immer, ist die vollständige Referenz

"Yang Qian. Design und Steuerung eines persönlichen Assistenzroboters. Sonstiges. Ecole Centrale de Lille, 2013. Englisch."

Wie kann ich dieses Problem lösen? Vielen Dank.

Antwort1

Der angezeigte Bib-Eintrag ist mit dem modernen Paket zu verwenden biblatex. Mit klassischem BibTeX und dem IEEEtranStil erhalten Sie die folgende Ausgabe, da der Stil nicht alle diese Feldtypen kennt.

Abonnieren

yanIeeeBiblatex

\begin{filecontents}{\jobname.bib}
@phdthesis{qian_design_2013,
  location = {{France}},
  title = {Design and {{Control}} of a {{Personal Assistant Robot}}},
  url = {https://tel.archives-ouvertes.fr/tel-00864692/document},
  abstract = {The purpose of this thesis is to design, model and control of a personal assistant robot used for domestic tasks. In order to make the robot's design more efficient, a virtual simulation system is built using dynamic simulation software. ...},
  pagetotal = {214},
  timestamp = {2017-07-06T15:44:04Z},
  langid = {english},
  institution = {{École Centrale de Lille}},
  author = {Qian, Yang},
  urldate = {2016-02-25},
  date = {2013-07-04},
  file = {Full Text PDF:C\:\\Users\\Yan WEI\\AppData\\Roaming\\Zotero\\Zotero\\Profiles\\jf7ifsnc.default\\zotero\\storage\\35UHZBC4\\Qian - 2013 - Design and Control of a Personal Assistant Robot.pdf:application/pdf}
}
\end{filecontents}
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[style=ieee]{biblatex}
\addbibresource{\jobname.bib}
\begin{document}
\nocite{*}
\printbibliography[title=Reference with biblatex]
\end{document}

Ein besserer Eintrag für das Klassensystem würde folgendes ergeben. Bitte beachten Sie, dass die Notiz ausgegeben wirdVordie URL, die zuletzt gedruckt wird fürIEEEtran.bst

Abonnieren

\begin{filecontents}{\jobname.bib}
@phdthesis{qian_design_2013,
  author = {Qian, Yang},
  title = {Design and {{Control}} of a {{Personal Assistant Robot}}},
  url = {https://tel.archives-ouvertes.fr/tel-00864692/document},
  pagetotal = {214},
  timestamp = {2017-07-06T15:44:04Z},
  langid = {english},
  school = {{École Centrale de Lille, France}},
  note = {(visited on 02/25/2016)},
year={2013},
month={Jul.},
}
\end{filecontents}
\documentclass{article}
\usepackage[utf8]{inputenc}
\begin{document}
\nocite{*}
\bibliography{\jobname}
\bibliographystyle{IEEEtran}
\end{document}

verwandte Informationen