Gerador automático de referência IEEE no estilo LaTeX?

Gerador automático de referência IEEE no estilo LaTeX?

Existe um gerador automático de referência que produza citações no estilo LaTeX que eu possa usar? Eu quero usar o estilo de citação IEEE.

Tenho mais de 50 referências que precisam ser citadas, mas digitá-las manualmente será um incômodo (olhando para frente e para trás no tutorial de estilo de referência)... Existem muitas online, mas nenhuma produz resultados em formato LaTeX.

Não me importo de gerá-lo e depois copiar e colar a referência em meu código, não há necessidade de integração com o TexShop.

No TexShop, atualmente estou fazendo isso manualmente, como:

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

Responder1

Primeiro, recomendo que você contrate um gerenciador de citações, comoZotero.

Então, ao selecioná-lo para exportar citações em bibtexformato, você poderá obter algo assim:

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

Que você deve copiar para o seu arquivo .bib.

Enquanto isso, seu código LaTeX deve ser parecido com isto:

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

Como você pode ver, ele chama o arquivo "refs.bib" usando \bibliography{refs}.

O resultado deve ser algo assim:

insira a descrição da imagem aqui

Se você estiver usando um projeto no TeXnicCenter, não esqueça de selecionar a opção "usa BibTeX".

Ou, conforme indicado no IEEE Journal Template:

A seção de referência pode usar uma bibliografia gerada pelo BibTeX como um arquivo .bbl

A documentação do BibTeX pode ser facilmente obtida em: http://www.ctan.org/tex-archive/biblio/bibtex/contrib/doc/ A página de suporte do estilo IEEEtran BibTeX está em: http://www.michaelshell.org/tex/ieeetran/bibtex/

OU copie manualmente no arquivo .bbl resultante e defina o segundo argumento de \begin para o número de referências (usado para reservar espaço para a caixa de rótulos de número de referência)

Este último parágrafo pode ser definido assim:

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

informação relacionada