含元数据的参考书目:

含元数据的参考书目:

我正在构建一个参考书目,其中包含我所从事领域的尽可能多的先前研究。我想使用BibTeX打印引文pdf,然后在引文后添加论文的详细信息。只有这样我才会打印下一个引文。例如:

[1] Jahan M. Dawlaty 和 Yunquing Chen。太赫兹波段石墨烯光吸收的测量。Applied Physics Letters,2008 年。

研究团队:康奈尔大学

泵浦波长:500nm。

探头波长:7微米。

弛豫时间:50 fs。

[2] Paul George 和 Dmitry Vekslar,《石墨烯中超快载流子动力学的测量》。《应用物理快报》,2009 年。

。 。 。 等等。

有人知道这该怎么做吗?

答案1

biblatex可以使用字段addendum,它类似于note,但始终打印在参考书目条目的末尾:

\documentclass{article}
\usepackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@article{dawlaty,
  author={Jahan M. Dawlaty and Yunquing Chen},
  title={Measurement of the optical absorption of graphene in the terahertz},
  journal={Applied Physics Letters},
  year={2008},
  addendum={\par
    Research Group: Cornell \\
    Pump Wavelength: 500 nm. \\
    Probe Wavelenth: 7 microns. \\
    Relaxation Time: 50 fs.}}

@article{george,
  author={Paul George and Dmitry Vekslar},
  title={Measurement of Ultrafast Carrier Dynamics in Graphene},
  journal={Applied Physics Letters},
  year={2009}}
\end{filecontents*}
\usepackage[sorting=none]{biblatex}
\addbibresource{\jobname.bib}

% to remove the addendum (https://tex.stackexchange.com/questions/208441)
% in the case that you want to use the same .bib file elsewhere without them
%\AtEveryBibitem{%
%  \clearfield{addendum}%
%}

\begin{document}

\nocite{*}
\printbibliography

\end{document}

对于普通的 BibTeX,您可能会(滥用)使用notebib 文件中的字段。note当然,这只有在最后排版时才有效,我不知道是否总是如此。因此,这可能根本不是一个解决方案,尽管它适用于您发布的示例。

在此处输入图片描述

\documentclass{article}
\usepackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@article{dawlaty,
  author={Jahan M. Dawlaty and Yunquing Chen},
  title={Measurement of the optical absorption of graphene in the terahertz},
  journal={Applied Physics Letters},
  year={2008},
  note={\par
    Research Group: Cornell \\
    Pump Wavelength: 500 nm. \\
    Probe Wavelenth: 7 microns. \\
    Relaxation Time: 50 fs.}}

@article{george,
  author={Paul George and Dmitry Vekslar},
  title={Measurement of Ultrafast Carrier Dynamics in Graphene},
  journal={Applied Physics Letters},
  year={2009}}
\end{filecontents*}

\begin{document}

\nocite{*}
\bibliographystyle{plain}
\bibliography{\jobname}
\end{document}

相关内容