Possible Duplicate:
superscripts with xelatex? (footnotes, natbib)
i want to use \supercite with biblatex. It works fine, unless I switch to LinuxLibertine. The font messes up the 'superscripted' comma and - line.
Btw: I use XeLaTeX.
Picture:

Minimal Example:
\documentclass{article}
\usepackage[style=numeric-comp]{biblatex}
\usepackage{fontspec,xunicode}
\usepackage{xltxtra}
% ACTIVATE TO SEE EFFECT
\setmainfont[Mapping=tex-text]{Linux Libertine O}
\setsansfont[Mapping=tex-text]{Linux Biolinum O}
\usepackage{filecontents}
\begin{filecontents}{test.bib}
@book{kastenholz,
author = {Author, A.},
year = {2001},
title = {Alpha},
}
@book{companion,
author = {Buthor, B.},
year = {2002},
title = {Bravo},
}
@article{augustine,
author = {Cuthor, C.},
year = {2003},
title = {Charlie},
}
\end{filecontents}
\addbibresource{test.bib}
\let\cite=\supercite
\begin{document}
Note the comma \cite{augustine,companion} and the underline \cite{augustine,companion,kastenholz}.
\printbibliography
\end{document}
xltxtra's redefinition of\textsuperscript– cgnieder Nov 23 '12 at 17:31libertine? I just updated mine (MiKTeX 2.9) today. – doncherry Nov 23 '12 at 18:08Requested font "Linux Libertine O" at 10.0pt -> C:/Program Files (x86)/MiKTeX 2.9/fonts/type1/public/libertine/LinLibertine O.pfb. That actually explains why I've always had trouble using OpenType features when using\setmainfont{Linux Libertine O}.. I instead used\usepackage{libertineotf}. I'll look into this a little more and perhaps turn it into a question. – doncherry Nov 23 '12 at 18:37:)(Usinglibertineotf, I get the same problem that you have.) – doncherry Nov 23 '12 at 18:38