我需要帮助!我怎样才能在只有作者、年份和页码的文本之外插入德语脚注?我正在使用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}