
引用するときは主にを使いたいのです\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 に付属している LuaLaTex を TeX Live 2013 とともに使用しています。
ヒントをいただければ幸いです。私は LaTeX、特に BibLaTeX についてはあまり詳しくないので、ドキュメントを読んでいるときにこれを見落としていないことを願っています。また、質問が不明瞭な場合はお知らせください。