脚注中也有引用

脚注中也有引用

我正在尝试让引用(\cite{something})也出现在脚注中。

我尝试通过添加\foonote{}\cite{}东西来做到这一点,但它变得很奇怪。

\usepackage[style=footnote-dw]{biblatex}也很奇怪,因为它只是在脚注中显示引用的标签。

答案1

这就是所指的吗??该bibentry包允许使用 抓取实际的引用文本\bibentry{<label>},以便可以将其插入到脚注中。

\documentclass{article}
\usepackage{bibentry}
\usepackage{filecontents}
\begin{filecontents}{mytestbib.bib}
@book{goossens93,
    author = "Frank Mittelbach and Michel Goossens  and Johannes Braams and David Carlisle  and Chris Rowley",
    title = "The {LaTeX} Companion",
    year = "1993",
    publisher = "Addison-Wesley",
    address = "Reading, Massachusetts"
}
@ARTICLE{segl03,
        AUTHOR  = "Segletes, S. B. AND Walters, W. P.",
        TITLE = {Extensions to the Exact Solution of the Long-Rod
                 Penetration/Erosion Equations},
        JOURNAL = "IJIE",
        YEAR    = "2003",
        VOLUME  = "28",
        PAGES   = "363--376"}
\end{filecontents}
\nobibliography*
\bibliographystyle{plain}
\begin{document} 
Citing these references in the main text.\cite{goossens93, segl03}%
\footnote{\cite{goossens93} \bibentry{goossens93}}.
I can then access both the number of the cite as well as the full citation, 
shown here in the footnote.

Now here is the bibliography.

\bibliography{mytestbib}
\end{document}

在此处输入图片描述

相关内容