논문 참조 스타일이 완전하지 않습니다.

논문 참조 스타일이 완전하지 않습니다.

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

어디에서나 완전한 참조는

"Yang Qian. 개인 보조 로봇의 설계 및 제어. 기타. Ecole Centrale de Lille, 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

yanIeeeBibMod

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

관련 정보