参考文献格式

参考文献格式

我正在寻找这种特定格式的参考文献。我对数字进行了一定程度的编辑,但看起来仍然不一样。如果您知道这是什么格式,能否提供如何链接和.bib文件的示例代码.tex

在此处输入图片描述

答案1

如果使用pdflatex、、bibtex2x进行编译pdflatex,您将获得以下解决方案acm\bibliographystyle{acm}

在此处输入图片描述

或者siam\bibliographystyle{暹罗}

在此处输入图片描述

移动网络:

\documentclass[11pt]{article}
\usepackage{cite}
\usepackage{filecontents}
\begin{filecontents}{mybib.bib}
@misc{ Nobody06,
       author = "Nobody Jr",
       title = "My Article",
       year = "2006" }
@article{cite1,
  author = {Knuth, Donald},
  title = {{Title One}},
  journal = {Some Journal},
  year = {2005},
  volume = {1},
  pages = {1--42},
}
@book{cite2,
  author = {Knuth, Donald},
  title = {{A Way More Important Title}},
  publisher = {Oxford},
  year = {2009},
  address = {New York}
}   
\end{filecontents}
\begin{document}
Blablabla says: It is a test ~\cite{Nobody06} or \cite{cite1}.
\bibliography{mybib}
\bibliographystyle{siam}%{acm}
\end{document}

相关内容