Skip to content
New issue

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

\footcites leads to an error #12

Closed
LukasCBossert opened this issue Oct 9, 2018 · 2 comments
Closed

\footcites leads to an error #12

LukasCBossert opened this issue Oct 9, 2018 · 2 comments
Assignees
Labels
bug Something isn't working
Milestone

Comments

@LukasCBossert
Copy link

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 !?

@moewew moewew added the bug Something isn't working label Oct 9, 2018
moewew added a commit that referenced this issue Oct 9, 2018
The definitions of the multicite commands mistakenly included
\smartcite instead of the proper macros \footcite(text).
@moewew
Copy link
Owner

moewew commented Oct 9, 2018

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.

moewew added a commit that referenced this issue Oct 9, 2018
@LukasCBossert
Copy link
Author

Thank you very much for the very quick debug! It works very well! So I will close this issue...

@moewew moewew self-assigned this Oct 9, 2018
@moewew moewew added this to the v0.5a milestone Oct 9, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants