각주와 숫자 인용 스타일 혼합

각주와 숫자 인용 스타일 혼합

인용할 때 주로 사용하고 싶지만 \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}

내가 얻는 결과는 다음과 같습니다.

결과

인용이 의도한 대로 작동하지 않을 뿐만 아니라, 중첩된 인용도 표시되지 않습니다. 각주 안의 각주가 주제에서 다소 벗어난 것일 수도 있지만, 각주 안의 각주에 대해 해당 솔루션이 동일한 문제를 나타내지 않기를 바랍니다.

내가 달성하고 싶은 것은 다음과 같습니다.

원하는

저는 Ubuntu 14.04와 함께 제공되는 방식으로 TeX Live 2013과 함께 LuaLaTex를 사용하고 있습니다.

어떤 힌트라도 주시면 감사하겠습니다. 저는 특히 LaTeX와 BibLaTeX를 처음 접했기 때문에 문서를 읽을 때 제가 간과한 것이 아니기를 바랍니다. 또한 제 질문이 불분명할 경우 알려주시기 바랍니다.

관련 정보