使用 bibtex 和 harvard.sty (或任何其他方式)获取条目摘要

使用 bibtex 和 harvard.sty (或任何其他方式)获取条目摘要

我使用网站的“导出引文”按钮(例如 jstor 或 ssrn.com)剪切并粘贴我的 bib 文件条目,这些条目通常带有“摘要”条目。但我从未见过任何 bibtex 或 harvard.sty 文档告诉我如何将其输入到我的 tex 文件中。

这可能吗?或者我可以让我的参考书目部分包含摘要吗?谢谢!

答案1

biblatex该包包含一种reading将摘要纳入(特殊格式的)参考书目中的样式。

\documentclass{article}

\usepackage[style=reading]{biblatex}

\usepackage{filecontents}

\begin{filecontents}{\jobname.bib}
@misc{A01,
  author = {Author, A.},
  year = {2001},
  title = {Alpha},
  abstract = {This is the abstract.},
}
\end{filecontents}

\addbibresource{\jobname.bib}

\nocite{*}

\begin{document}

\printbibliography

\end{document}

(filecontents 环境仅用于将一些外部文件直接包含到示例中,以便进行编译。对于解决方案来说,它不是必需的。)

相关内容