将 footcite 与数字引用样式混合

将 footcite 与数字引用样式混合

我主要想\footcite在引用时使用,但有时我想将参考文献作为句子的一部分来引用。这些文内参考文献最好采用如下格式Ref. [2,4-6,8],即引用编号参考书目中的索引。(如果阅读此文没有太大意义,请参见下文。)

此外,以同样的方式,我希望能够同时进行文内引用和脚注内的脚注引用;后者只会创建一个新的后续脚注。

目前,我拥有的是:

\documentclass[12pt,english,a4paper]{article}
\usepackage[english]{babel}

\usepackage[
    backend=biber,
    citestyle=verbose,
    bibstyle=verbose,
    sorting=nyvt,
    isbn=false,
    url=false,
    maxcitenames=10,
    maxbibnames=100
]{biblatex}
\addbibresource{bibliography.bib}
\DeclareNameAlias{sortname}{last-first}
\renewbibmacro{in:}{}

\usepackage{fnpct}
\usepackage[multiple]{footmisc}
\AdaptNoteOpt{\footcite}{\multfootcite}

\usepackage{filecontents}
\begin{filecontents*}{bibliography.bib}
@article{A,
  author    = {Alpha, Amber},
  title     = {Title},
  publisher = {Publisher},
  year      = {2014},
}
@article{B,
  author    = {Beta, Bryan},
  title     = {Title2},
  publisher = {Publisher2},
  year      = {2015},
}
@article{G,
  author    = {Gamma, Gina},
  title     = {Title3},
  publisher = {Publisher3},
  year      = {2016},
}
@article{D,
  author    = {Delta, Daniel},
  title     = {Title4},
  publisher = {Publisher4},
  year      = {2017},
}
\end{filecontents*}

\begin{document}
While some\footcite{A}\footcite{B} argue X, Ref. \textcite{G} argues Y.%
\footnote{However, Z\footcite{D}\footcite{A} is has to be considered as an alternative,
even though Ref. \textcite{B}\textcite{G} dismiss this possibility.%
\footnote{A nested footnote.}}

\printbibliography
\end{document}

我得到的结果是这样的:

结果

不仅引用没有按照我预期的方式工作,而且嵌套引用也没有显示。虽然脚注中的脚注可能有点离题,但我希望解决方案不会出现脚注中的脚注的相同问题。

我想要实现的是这样的:

期望

我正在将 LuaLaTex 与 TeX Live 2013 一起使用,就像 Ubuntu 14.04 自带的那样。

非常感谢任何提示。我对 LaTeX 和 BibLaTeX 尤其陌生,所以我希望这不是我在阅读文档时忽略的东西。此外,如果我的问题不清楚,请告诉我。

相关内容