fnpct seems to not work with \footfullcite (from biblatex)
Sai-Tam opened this issue · 1 comments
Sai-Tam commented
For me the footnote in the text appears in front of the full stop, when I use the \footfullcite command from the biblatex package.
The following minimal example should reproduce the issue.
\documentclass{article}
\usepackage{fnpct}
\usepackage[backend=biber]{biblatex}
\begin{document}
Test\footfullcite[][]{}.
\end{document}
cgnieder commented
You need to tell fnpct
about that command, see section 8 of the manual.
\documentclass{article}
\usepackage{fnpct}
\usepackage{biblatex}
\addbibresource{biblatex-examples.bib}
\AdaptNoteOptNoMult\footfullcite
\begin{document}
Test\footfullcite[see][423\psqq]{companion}.
\end{document}