將腳註與數位引用風格混合

將腳註與數位引用風格混合

我主要想\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 特別陌生,所以我希望這不是我在閱讀文件時忽略的事情。另外,如果我的問題不清楚,請告訴我。

相關內容