biblatex 书目中的注册符号

biblatex 书目中的注册符号

我无法在我的参考书目中放置凸起的注册符号( \textsuperscript{\textregistered}) 。biblatex

梅威瑟:

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[backend=biber, bibencoding=utf8, style=authoryear-icomp]{biblatex}
\bibliography{ref}

\begin{document}

Text\parencite{name}.

\printbibliography

\end{document}

参考:

@manual{name,
title = {Title\textsuperscript{\textregistered}},
author = {Some Guy},
year = {2014},
}

这会产生以下错误:

./test.tex:11: \UTFviii@two@octets 的参数有一个额外的 }。

./test.tex:11: 段落在 \UTFviii@two@octets 完成之前结束。

./test.tex:11:包 inputenc 错误:使用的键盘字符未定义

并且显示的参考书目条目没有符号。

单独使用\textsuperscript\textregistered都不会产生此问题。有什么建议吗?

答案1

biblatex该错误是由和 的版本过旧引起的biber

TeX Live 2014 的更新(在 Mac OS X 上是 MacTeX 2014)应该可以解决这个问题。

相关内容