参考文献と脚注の両方で完全な引用を行うにはどうすればよいでしょうか?

参考文献と脚注の両方で完全な引用を行うにはどうすればよいでしょうか?

引用を、参照ページと各ページの脚注の両方に完全な引用として表示したいと考えています。\footfullcite各引用の後に手動で実行して結果を得ることもできますが、そうすると 60 個の引用を入力する必要があります。私が望むことを実現するより便利な方法はありますか?

verbose スタイルと lipsum トリックを試してみました。しかし、結果として得られるリファレンス ページは、必要な ieee スタイルではありません。

貴重なお時間をいただき、誠にありがとうございます。LaTex を使い始めたばかりですが、非常に役に立っています。同時に混乱もしています。

\usepackage[backend=bibtex,sorting=none,citestyle=ieee]{biblatex} 
\addbibresource{ref.bib}
\begin{document}

free text free text free tex \cite{ref1}. free text free text \cite{ref3} \cite{ref4}.

\pagebreak
\printbibliography
\end{document}

答え1

の本質を再定義して、これまで行っていた\citeことと、次のことの両方を実行します。\cite\footfullcite

\documentclass{article}

\usepackage[backend=bibtex,sorting=none,citestyle=ieee]{biblatex}

\makeatletter
\let\oldblx@cite@cite\blx@cite@cite
\def\blx@cite@cite#1#2#3#4{%
   \oldblx@cite@cite{#1}{#2}{#3}{#4}%
   \blx@cite@footfullcite{#1}{#2}{#3}{#4}%
}
\makeatother

\addbibresource{ref.bib}
\begin{document}

free text free text free tex \cite{ref1}. free text free text \cite{ref3} \cite{ref4}.

\pagebreak
\printbibliography
\end{document} 

関連情報