Estou usando unsrt
o estilo bibliografia, mas recebo uma sequência incorreta na seção Referências do pdf. Aqui está o conteúdo do arquivo .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}
Aqui está a saída:
Responder1
Você precisa deixar o BibTeX realizar a organização (e classificação, se necessário) de sua bibliografia. Se você inserir os \bibitem
s manualmente, não há como eles serem classificados/organizados de acordo com o seu estilo ( unsrt
). Então, siga a sequência:
- Escreva sua bibliografia em um
.bib
arquivo separado usando o apropriadoFormato de entrada BibTeX. - Compile
filename.tex
uma vez (para obter um correto/atual.aux
). - Execute
bibtex filename
(para obter um correto/atual.bbl
). - Compile
filename.tex
novamente (para incluir o correto/atual.bbl
).
Aqui está um exemplo com o .bib
incorporado no .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}
Observe como não havia especificação de formatação para o diário ou número no .bib
- tudo isso foi feito pelo BibTeX.