LaTeX 스타일의 자동 IEEE 참조 생성기?

LaTeX 스타일의 자동 IEEE 참조 생성기?

사용할 수 있는 LaTeX 스타일로 인용을 생성하는 자동 참조 생성기가 있습니까? IEEE 인용 스타일을 사용하고 싶습니다.

인용해야 할 참고 자료가 50개가 넘지만 수동으로 입력하는 것은 번거로울 것입니다(참조 스타일 튜토리얼을 앞뒤로 살펴보기)... 온라인에는 많지만 LaTeX 형식으로 결과를 생성하는 것은 없습니다.

나는 그것을 생성한 다음 참조를 내 코드에 복사하여 붙여넣는 것을 신경 쓰지 않으며 TexShop과 통합할 필요가 없습니다.

TexShop에서는 현재 다음과 같이 수동으로 이 작업을 수행하고 있습니다.

\begin{thebibliography}{10}

\addcontentsline{toc}{chapter}{REFERENCES}

\bibitem{lowry1951protein}Lowry, O. H., Rosebrough, N. J., Farr, A. L., and Randall, R. J. (1951). Protein measurement with the Folin phenol reagent. \emph{J. Biol. Chem.}, 193(1), 265--275.

\end{thebibliography}

답변1

먼저, 다음과 같은 인용 관리자를 구하는 것이 좋습니다.조테로.

그런 다음 인용을 형식으로 내보내도록 선택하면 bibtex다음과 같은 결과를 얻을 수 있습니다.

@inproceedings{espinoza_inverse_2012,
    title = {Inverse Kinematics of a 10 {DOF} Modular Hyper-Redundant Robot Resorting to Exhaustive and Error-Optimization Methods: A Comparative Study},
    shorttitle = {Inverse Kinematics of a 10 {DOF} Modular Hyper-Redundant Robot Resorting to Exhaustive and Error-Optimization Methods},
    doi = {10.1109/SBR-LARS.2012.28},
    abstract = {This paper describes and compares several approaches applied to compute the inverse kinematics of a 10 degrees of freedom hyper-redundant robot. The proposed approaches are based on an exhaustive method and several error optimization algorithms. The algorithms' performance was evaluated based on two criteria: computing time and final actuator positioning error. The mentioned hyper-redundant robot was projected to be used in biomedical applications.},
    booktitle = {Robotics Symposium and Latin American Robotics Symposium ({SBR-LARS)}, 2012 Brazilian},
    author = {Espinoza, {M.S.} and Goncalves, J. and Leitao, P. and Sanchez, {J.L.G.} and Herreros, A.},
    year = {2012},
    keywords = {10-{DOF} modular hyper-redundant robot, actuator positioning error, actuators, biomedical applications, computing time, Equations, error optimization method, exhaustive method, flexible manipulators, hyper-redundant manipulators, inverse kinematics, kinematics, Manipulators, Mathematical model, optimisation, Optimization, position control, redundant manipulators, Robotics, Vectors},
    pages = {125--130}
}

.bib 파일에 복사하면 됩니다.

동시에 LaTeX 코드는 다음과 같아야 합니다.

\documentclass[journal,a4paper]{IEEEtran}

\begin{document}

\IEEEPARstart{Y}{our} document here and just to cite: \cite{espinoza_inverse_2012}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\bibliographystyle{IEEEtran}
\bibliography{refs} % your .bib file
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\end{document}

보시다시피 \bibliography{refs}.

결과는 다음과 같아야 합니다.

여기에 이미지 설명을 입력하세요

TeXnicCenter에서 프로젝트를 사용하는 경우 "BibTeX 사용" 옵션을 선택하는 것을 잊지 마십시오.

또는 IEEE 저널 템플릿에 명시된 대로:

참조 섹션은 BibTeX에서 생성된 참고문헌을 .bbl 파일로 사용할 수 있습니다.

BibTeX 문서는 다음에서 쉽게 얻을 수 있습니다. http://www.ctan.org/tex-archive/biblio/bibtex/contrib/doc/ IEEEtran BibTeX 스타일 지원 페이지는 다음 위치에 있습니다. http://www.michaelshell.org/tex/ieeetran/bibtex/

또는 결과 .bbl 파일을 수동으로 복사하고 \begin의 두 번째 인수를 참조 수로 설정합니다(참조 번호 레이블 상자를 위한 공간을 예약하는 데 사용됨).

이 마지막 단락은 다음과 같이 설정할 수 있습니다.

\begin{thebibliography}{1}

    \bibitem{espinoza_inverse_2012}
M.~Espinoza, J.~Goncalves, P.~Leitao, J.~Sanchez, and A.~Herreros, ``Inverse
  kinematics of a 10 {DOF} modular hyper-redundant robot resorting to
  exhaustive and error-optimization methods: A comparative study,'' in
  \emph{Robotics Symposium and Latin American Robotics Symposium ({SBR-LARS)},
  2012 Brazilian}, 2012, pp. 125--130.

\end{thebibliography}

관련 정보