Estoy usando unsrt
estilo de bibliografía pero obtengo una secuencia incorrecta en la sección Referencias del pdf. Aquí está el contenido del archivo .tex:
\documentclass{article}
\bibliographystyle{unsrt}
\title{\textbf{\large{Title Goes Here}}}
\author{
Author Name
}
\date{\today}
\begin{document}
\maketitle
\section{Introduction}
I am using unsrt.
I want to cite these two: ~\cite{JMechPhysSol_analytical} and ~\cite{OrigPaper}.
But they appear in the reverse order.
\begin{thebibliography}{00}
\bibitem{OrigPaper}
J. Cheng, E. H. Jordan, B. Barber, M. Gell,
``Thermal/Residual Stress in an Electron Beam Physical Vapor Deposited Thermal Barrier
\textit{Acta Mater.}, \textbf{46}, 5839-5850 (1998).
\bibitem{JMechPhysSol_analytical}
D. S. Balint, J.W. Hutchinson,
``An Analytical model of rumpling in thermal barrier coatings.''
\textit{J. Mech. Phys. Solids}, \textbf{53}, 949-973 (2005).
\end{thebibliography}
\end{document}
Aquí está el resultado:
Respuesta1
Debe dejar que BibTeX realice la organización (y clasificación, si es necesario) de su bibliografía. Si ingresa los \bibitem
s manualmente, no hay forma de que se ordenen/organicen según su estilo ( unsrt
). Entonces, sigue la secuencia:
- Escriba su bibliografía en un
.bib
archivo separado utilizando el formato apropiado.Formato de entrada BibTeX. - Compile
filename.tex
una vez (para obtener un archivo correcto/actual.aux
). - Ejecutar
bibtex filename
(para obtener un correcto/actual.bbl
). - Compile
filename.tex
nuevamente (para incluir el archivo correcto/actual.bbl
).
Aquí hay un ejemplo con el .bib
incrustado en el .tex
usofilecontents
:
\documentclass{article}
\usepackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@article{OrigPaper,
author = {J Cheng and EH Jordan and B Barber and M Gell},
title = {Thermal/Residual Stress in an Electron Beam Physical Vapor Deposited Thermal Barrier},
journal = {Acta Mater.},
volume = {46},
pages = {5839-5850},
year = {1998}
}
@article{JMechPhysSol_analytical,
author = {DS Balint and JW Hutchinson},
title = {An Analytical model of rumpling in thermal barrier coatings.},
journal = {J.\ Mech.\ Phys.\ Solids},
volume = {53},
pages = {949-973},
year = {2005}
}
\end{filecontents*}
\bibliographystyle{unsrt}
\title{\textbf{\large{Title Goes Here}}}
\author{Author Name}
\date{\today}
\begin{document}
\maketitle
\section{Introduction}
I am using \verb|unsrt|.
I want to cite these two:~\cite{JMechPhysSol_analytical} and~\cite{OrigPaper}.
\bibliography{\jobname}
\end{document}
Tenga en cuenta que no había ninguna especificación de formato para la revista o el número en el .bib
; todo eso fue hecho por BibTeX.