我想添加脚注,其中包含 .bib 文件的文本,而不仅仅是引用的名称。使用 jurabib 找到了一些解决方案,但我的其他软件包不兼容。我该如何解决这个问题?
我的 tex 文件:
\documentclass[]{report}
\usepackage{times}
\usepackage[dutch]{babel}
\usepackage{cite}
\usepackage{comment}
\usepackage[hidelinks]{hyperref} %Makes Table of Contents clickable
\begin{document}
\includecomment{comment} %change exclude to include for showing in pdf too
% Article top matter
\title{X}
\author{XX}
\date{\today}
\maketitle
\tableofcontents
%Begin text
Text\footnote{name1} more text
%End text
\bibliography{pws}{}
\bibliographystyle{plain}
\end{document}
我的围兜文件:
@misc{name1,
author = "Name, Name",
title = "",
date = "17-05-2014",
howpublished = "conference"
}
答案1
您可以使用 来做这种事情biblatex
。下面的代码使用backend=bibtex
选项,因此您仍然执行latex
> bibtex
> latex
>latex
编译例程。(虽然使用较新的biber
后端。
您没有提到编号和/或仍然在文档末尾的参考书目中打印这些引文的要求。因此,这是一个说明如何入门的基本版本。
biblatex
提供的\footcite
命令还允许您指定要放在引文之前或之后的文本:\footcite[<prenote>][<postnote>]{<key>}
。更多信息请参见文档(\footcite
出现在第 80 页)。
\begin{filecontents}{\jobname.bib}
@misc{name1,
author = "Name, Name",
title = "",
date = "17-05-2014",
howpublished = "conference"
}
\end{filecontents}
\documentclass[]{report}
\usepackage{times}
\usepackage[dutch]{babel}
%\usepackage{cite} % Not compatible with biblatex
\usepackage{comment}
\usepackage[backend=bibtex,citestyle=verbose-ibid]{biblatex}
\addbibresource{\jobname.bib}
\usepackage[hidelinks]{hyperref} %Makes Table of Contents clickable
\begin{document}
Text\footcite[See][pages 1--2]{name1} more text
\printbibliography
\end{document}
脚注引用如下所示: