书目样式“unsrt”不起作用

书目样式“unsrt”不起作用

我使用unsrtbibliographystyle,但在 pdf 的 References 部分中出现了错误的序列。以下是 .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}

输出如下:

在此处输入图片描述

答案1

您需要让 BibTeX 对您的参考书目进行组织(如果需要,还进行排序)。如果您\bibitem手动输入 s,则无法根据您的风格对其进行排序/排列(unsrt)。因此,请按照以下顺序操作:

  1. 以单独的方式撰写参考书目.bib使用适当的方式BibTeX 条目格式
  2. 编译filename.tex一次(为了获得正确/当前的.aux)。
  3. 运行bibtex filename(为了获得正确/当前的.bbl)。
  4. 再次编译filename.tex(为了包含正确/当前的.bbl)。

.bib下面是嵌入.tex使用的示例filecontents

在此处输入图片描述

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

请注意,其中没有期刊或数字的格式规范.bib- 所有这些都是由 BibTeX 完成的。

相关内容