
¿Existe un generador de referencias automático que produzca citas en estilo LaTeX que pueda usar? Quiero utilizar el estilo de citas IEEE.
Tengo más de 50 referencias que deben citarse, pero escribirlas manualmente será complicado (mirando hacia adelante y hacia atrás en el tutorial de estilo de referencias)... Hay muchas en línea, pero ninguna produce los resultados en formato LaTeX.
No me importa generarlo y luego copiar y pegar la referencia en mi código, no es necesario que se integre con TexShop.
En TexShop, actualmente estoy haciendo esto manualmente, como por ejemplo:
\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}
Respuesta1
Primero, te recomendaría que consigas un administrador de citas, comoZotero.
Luego, al seleccionarlo para exportar citas en bibtex
formato, debería poder obtener algo como esto:
@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 deberías copiar a tu archivo .bib.
Mientras tanto, su código LaTeX debería verse así:
\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 puede ver, solicita el archivo "refs.bib" usando \bibliography{refs}
.
El resultado debería ser algo como esto:
Si está utilizando un proyecto en TeXnicCenter, no olvide seleccionar la opción "usa BibTeX".
O, como se indica en la plantilla de revista IEEE:
La sección de referencia puede utilizar una bibliografía generada por BibTeX como un archivo .bbl
La documentación de BibTeX se puede obtener fácilmente en: http://www.ctan.org/tex-archive/biblio/bibtex/contrib/doc/ La página de soporte de estilo IEEEtran BibTeX está en: http://www.michaelshell.org/tex/ieeetran/bibtex/
O copie manualmente el archivo .bbl resultante y establezca el segundo argumento de \begin en el número de referencias (usado para reservar espacio para el cuadro de etiquetas de números de referencia)
Este último párrafo se puede configurar así:
\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}