For my thesis, I need to present the references in full as footnotes every time the document is presented in the text.
For that, I've been using BibLatex with the following options:
\usepackage[backend=biber,style=apa,language=english]{biblatex}
In the text, when necessary, insert a reference, the command I'm using is \footfullcite{ref}. However, sometimes I need to insert multiple references in the same footnote, and for that, the command is \footfullcite{ref1,ref2,ref3}.
It works perfectly when I'm referencing articles.
The problem is when I need to indicate the page of the document, like a book. The command \footfullcite[p. x]{ref} works perfectly when only one reference is indicated, but when indicating multiple references, I can't indicate the page for one specific reference.
If I try to use the command \footfullcite[p. x]{ref1,ref2,ref3}, the number of the page appears at the end of all references, independently of which works it refers to.
I have tried to adapt a solution like the one present here, but it didn't work.
A MWE of what I'm trying:
\begin{filecontents*}{\jobname.bib}
@article{test,
title = {Synthesis of Enantiopure Alcohols},
volume = {71},
number = {17},
journal = {J. Org. Chem.},
author = {Test T.},
month = aug,
year = {2006},
pages = {6333--6445}
}
\end{filecontents*}
\documentclass[12pt, a4paper, twoside, english]{abntex2}
\usepackage[backend=biber]{biblatex}
\addbibresource{\jobname.bib}
\begin{document}
First\footfullcite{test}, second\footfullcite{test} and third time.\footfullcite{test}
Multiple times.\footfullcite{test,test,test}
Multiple times with page number.\footfullcite[p. 15]{test,test,test}
\end{document}
The result is:
However, I would like to insert the page number on the second reference, for example, and not at the end of all references.
Could someone please help me? Thank you!!
PS: On my system, I'm using the command \usepackage[backend=biber,style=apa,language=english]{biblatex}, but for some reason I don't know, when I try to use this command in the MWE, the references don't appear correctly.

![Sigfridsson, E., & Ryde, U. (1998). Comparison of methods for deriving atomic charges from the electrostatic potential and moments. Journal of Computational Chemistry, 19(4), 377–395. https://doi.org/10.1002(SICI)1096-987X(199803)19:4<377::AID-JCC1>3.0.CO;2-P p. 380; Worman, N. (2002). The cast of character: Style in Greek literature. University of Texas Press, p. 12; Geer, I. de. (1985). Earl, saint, bishop, skald – and music: The Orkney Earldom of the twelfth century. A musicological study [Doctoral dissertation, Uppsala Universitet]. Uppsala, p. 51](../../images/8f4794e585f37f94f17aac0821f860e7.webp)
multicitein the biblatex manual (texdoc biblatex). – Cicada Aug 01 '22 at 15:04The
multiciteoptions don't work in my case, as there's not a multicite version of\footfullcite.If I try to use the
– Luis Felipe Aug 02 '22 at 16:17\footcitetextscommand, I am able to insert the number of the page correctly linked with the work I choose. But this option does not provide me the full information of the references, as I need.