We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Consider this MWE
\documentclass{article} \usepackage{filecontents} \begin{filecontents*}{\jobname.bib} @Book{test1, author = {A. Author}, date = {2018} } @Book{test2, author = {B. Buthor}, date = {2017} } @Book{test3, author = {C. Cuthor}, date = {2017} } \end{filecontents*} \usepackage[% backend=biber, bibstyle=ext-authortitle, citestyle=ext-authoryear, ]{biblatex} \addbibresource{\jobname.bib} \begin{document} \footnote{\cites% [1--3]{test1}% [4--6]{test2}% [7--10]{test3}} % Does not work \footcites% [1--3]{test1}% [4--6]{test2}% [7--10]{test3} \end{document}
It seems like \footcites is not working !?
\footcites
The text was updated successfully, but these errors were encountered:
Fix bug in ext-authoryear's \footcite(text)s (#12)
e1ab5d4
The definitions of the multicite commands mistakenly included \smartcite instead of the proper macros \footcite(text).
Thank you very much for that bug report. This was a small copy-and-paste error. It has been fixed in e1ab5d4.
An updated version (v0.5a) is on its way to CTAN and should arrive in TeX distributions in the next few days. In the meantime
\DeclareMultiCiteCommand{\footcites}[\mkextblxfootcite] {\footcite}{\multicitedelim} \DeclareMultiCiteCommand{\footcitetexts}[\mkextblxfootcitetext] {\footcitetext}{\multicitedelim}
should be a work-around if you use (cite)sytle=ext-authoryear.
(cite)sytle=ext-authoryear
Sorry, something went wrong.
Document \footcites fix (#12)
7b24f4e
Thank you very much for the very quick debug! It works very well! So I will close this issue...
moewew
No branches or pull requests
Consider this MWE
It seems like
\footcites
is not working !?The text was updated successfully, but these errors were encountered: