论文参考文献格式不完整

论文参考文献格式不完整

我使用“ieeetran”和以下代码来生成参考(不带 URL 信息)

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

但结果却是“Y. Qian,《个人助理机器人的设计与控制》,博士论文。”

生成的 .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 = {{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}
}

完整参考资料如下:

“杨倩。个人助理机器人的设计与控制。其他。里尔中央理工学院,2013。英语。”

我该如何解决这个问题?非常感谢。

答案1

显示的 bib 条目将与现代包一起使用biblatex。使用经典 BibTeX 和IEEEtran样式,您会得到以下输出,因为样式不知道所有这些字段类型。

yanIleeeBib

yanIleeeBiblatex

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

更好的类系统条目将产生以下内容。请注意,注释是输出最后打印的 URLIEEEtran.bst

yanIleeeBibMod

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

相关内容