答案1
如果使用pdflatex
、、bibtex
2x进行编译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}