有时(特别是在参考书目中)\P 复杂性类别被呈现为段落标记

有时(特别是在参考书目中)\P 复杂性类别被呈现为段落标记

MWE 如下。使用 Fedora 34(最新版)中的 texlive 20200327-30,我得到的\P渲染结果为“¶”。

\documentclass{article}
\usepackage{filecontents}

\usepackage{biblatex}
\usepackage{complexity}

\begin{filecontents*}{\jobname.bib}
@Book{goldreich10:_p_np_np-complete,
  author =       {Goldreich, Oded},
  title =        {\P, \NP, and \NP-completeness:
                  The Basics of Computational Complexity},
  publisher =    {Cambridge University Press},
  year =         2010
}
\end{filecontents*}

\bibliography{\jobname}

\begin{document}
\nocite{*}
\printbibliography
\end{document}

答案1

该软件包提供了\cP一个更安全的替代方案,因此它可以工作

  title =        {\cP, \NP, and \NP-completeness:

\P是字符的标准 LaTeX 命令,因此 biber 将其扩展为该命令,以便可以进行排序等。

相关内容