我遇到一个 pdf 文件,我想引用它,如果我想引用它,这些字段该写什么?
@misc{ ,
author = "{}",
title = "{}",
year = "",
howpublished = "\url{}",
note = "[]"
}
答案1
可编译的示例如下。这里是a.tex
:
\documentclass{article}
\usepackage{url}
\begin{document}
Perelman~\cite{Perelman2003}.
\bibliographystyle{unsrt}
\bibliography{a}
\end{document}
这是a.bib
@misc{Perelman2003,
author = "Perelman, Grisha",
title = "Finite extinction time for the solutions to the
Ricci flow on certain three-manifolds",
year = 2003,
howpublished = "\url{https://arxiv.org/abs/math/0307245}",
note = "arXiv:math.DG/0307245",
}