
我使用“ieeetran”和以下程式碼來產生參考(沒有 URL 資訊)
\bibliographystyle{IEEEtran}
\bibliography{IEEEfull,paper01Const}
然而,結果卻是「錢勇,《個人助理機器人的設計與控制》博士論文」。
產生的 .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
所示的圍兜條目將與現代包一起使用biblatex
。使用經典 BibTeX 和IEEEtran
樣式,您會得到以下輸出,因為樣式不知道所有這些欄位類型。
\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
\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}