Sascha Vieweg
unread,Nov 11, 2011, 8:40:07 AM11/11/11You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
Hello! I use biblatex, and recently, I have switched from pdflatex to
xelatex. However, with xelatex I always get an error (stop) with the
following text:
! Undefined control sequence.
\biburlsetup ->\Urlmuskip
=0mu plus 3mu\relax \mathchardef \UrlBigBreakPenal...
l.20 I want to use \textcite{Cohen:1992}
as well.
I have played around on the code but can't make it to work. Could you
help? Thanks, *S*
<begin minimal_example>
\documentclass{scrartcl}
\usepackage{filecontents}
\begin{filecontents}{test2.bib}
@article{Cohen:1992,
Author = {Cohen, Jacob},
Date = {1992},
Title = {A Power Primer},
Journaltitle = {Psychological Bulletin},
Volume = {112},
Number = {1},
Pages = {155–159}
}
\end{filecontents}
\usepackage{xltxtra}
\usepackage[english]{babel}
\usepackage[babel]{csquotes}
\usepackage[style=apa, backend=biber]{biblatex}
\addbibresource{test2.bib}
\begin{document}
I want to use \textcite{Cohen:1992} as well.
\printbibliography
\end{document}
<end minimal_example>