文本之外的简短脚注

文本之外的简短脚注

我需要帮助!我怎样才能在只有作者、年份和页码的文本之外插入德语脚注?我正在使用jurabib典型\footcite命令,但它给了我太大的脚注,包括整个标题和其中的所有内容......

答案1

\footcite与参考书目样式一起使用jureco

\documentclass{article}

\usepackage[pages=format]{jurabib}

\usepackage{filecontents}

\begin{filecontents}{\jobname.bib}
@misc{A01,
  author = {Author, A.},
  year = {2001},
  title = {Alpha},
  address = {(Address)},
}
\end{filecontents}

\begin{document}

\null\vfill% just for the example

Some text.\footcite[99]{A01}

\bibliographystyle{jureco}
\bibliography{\jobname}

\end{document}

在此处输入图片描述

相关内容