如何使用 BibTeX 在参考文献部分中包含引文的完整摘要?

如何使用 BibTeX 在参考文献部分中包含引文的完整摘要?

我想让.bib论文中每条引文的摘要(在文件中指定)出现在参考文献部分。我该如何实现?

.bib 文件(由 Mendeley 生成)的摘要指定如下:

@article{RefName,
abstract = {really long abstract},
author = {Author, F M},
journal = {Nano Letters},
keywords = {key,words},
number = {12},
pages = {2728--2735},
title = {{The Title}},
volume = {6},
year = {2006}
}

引文显示良好

\bibliographystyle{plain}

但我希望引用中包含完整的摘要,例如

[1] FM 作者。标题。[摘要在此处或任何地方纳米字母, 6(12):2728-2735, 2006.

答案1

我知道的唯一现成的书目样式文件,可以排版每个条目的内容abstract参考文献中每个条目字段的内容(但不作为引文标注的一部分),叫做摘要.bst

如下例所示,参考书目样式并未设计为在和字段abstract中输出信息(即使存在) 。如果字段中存在任何 TeX 特殊字符(例如、、和) ,则必须按照通常的 TeX/LaTeX 语法规则使用反斜杠字符对其进行转义。如果字段恰好包含任何段落分隔符(如下例所示),则必须插入适当位置的指令才能保留段落分隔符。urldoi$%#&abstractabstract\par

key每个条目的所示。(在下面的例子中,key字段由字符串给出feldstein:2011。)实际上,条目按字母顺序排列在key字段的字母顺序排序,不是按作者姓氏的字母顺序排列。

在此处输入图片描述

\RequirePackage{filecontents}
\begin{filecontents}{mybib.bib}
@techreport{feldstein:2011,
   title  = "The {Tax Reform Act} of 1986:  Comment on the 25th Anniversary",
   author = "Martin S. Feldstein",
   institution = "National Bureau of Economic Research",
   type   = "Working Paper",
   series = "Working Paper Series",
   number = "17531",
   year   = "2011",
   month  = "October",
   doi    = "10.3386/w17531", 
   URL    = "http://www.nber.org/papers/w17531",
   abstract = {The Tax Reform Act of 1986 was a powerful pro-growth force 
         for the American economy.  Equally important, as we look back on it 
         after 25 years, we also see that it taught us two important 
         lessons.  First, it showed that politicians with very different 
         political philosophies on the right and on the left could agree on 
         a major program of tax rate reduction and tax reform.  Second, it 
         showed that the amount of taxable income is very sensitive to 
         marginal tax rates. 
         \par
         More specifically, the evidence based on the 1986 tax rate 
         reductions shows that the response of taxpayers to reductions in 
         marginal tax rates offsets a substantial portion of the revenue 
         that would otherwise be lost.  This implies that combining a 
         broadening of the tax base that raises revenue equal to 10 percent 
         of existing personal income tax revenue with a 10 percent across 
         the board cut in all marginal tax rates would raise revenue equal 
         to about four percent of existing tax revenue.  With personal 
         income tax revenue in 2011 of about \$1 trillion, that four percent 
         increase in net revenue would be \$40 billion at the current level 
         of taxable income or more than \$500 billion over the next ten 
         years.},
}
\end{filecontents}

\documentclass{article}
\bibliographystyle{abstract}
\usepackage{url} % doesn't get used since "abstract" bib style doesn't show contents of 'url' fields
\usepackage[english]{babel}

\begin{document}
\nocite{*}
\bibliography{mybib}
\end{document}

相关内容