\cites
使用biblatex 命令对引文进行排序使用 biblatex 中的 \cites 命令对引用进行排序运行正常,但不再适用于 TexLive 2016。
Error produced with the minimal example of the above link:
! Undefined control sequence.
<argument> \cbx@sortkeys
l.49 ...mpanion}{ctan}{markey}[10--11]{vangennep} \\
这不仅仅是第一次运行 biber 时出现的错误信息。没有预期的 sorted\Cites
和\cites
命令的输出。
有人知道如何调整新版 TexLive 2016 的代码吗?
答案1
我遇到了同样的问题,并在新旧文件biblatex.sty
和相关文件中进行了搜索。我发现
{\global\letcs{\cbx@sortkeys}
{blx@slists@\the\c@refsection @entry@\blx@sorting}}% Biber
在 Audray 的解决方案中(使用 biblatex 中的 \cites 命令对引用进行排序) 的来源。这不适用于实际的 biblatex,因为这里使用的一些参数不再定义。我不得不用实际 biblatex 中的定义替换这些行:
{\global\letcs{\cbx@sortkeys}
{blx@slist@centry@\the\c@refsection @\blx@refcontext@context}}% Biber
它仍然不是使用 biblatex 深层内部结构的最干净的解决方案,但对我来说它很有用......
这是 MWE。这是 Audrey 的精彩回答中的 MWE 的一个补丁(因此功劳仍然属于他):
\documentclass{article}
\usepackage[style=authortitle,sorting=ynt,sortcites]{biblatex}
\makeatletter
% original definition of \cites
\DeclareMultiCiteCommand{\cbx@cites}{\cite}{\multicitedelim}
% new definition
\DeclareMultiCiteCommand{\cites}[\cbx@cite@wrapper\cbx@cites]{\cbx@cite}{}
% first pass saves keys, prenotes, postnotes
\DeclareCiteCommand{\cbx@cite}
{\csxdef{prenote:\thefield{entrykey}}{\thefield{prenote}}}
{\listxadd\cbx@savekeys{\thefield{entrykey}}}
{}
{\csxdef{postnote:\thefield{entrykey}}{\thefield{postnote}}}
% second pass outputs sorted citation list
\newrobustcmd{\cbx@cite@wrapper}[2]{%
\def\cbx@savekeys{}%
\def\cbx@citecall{#1}%
#2\cbx@sortkeysinit\cbx@citesort\cbx@citecall}
% internal list of saved keys => sorted argument list
\def\cbx@citesort{%
\def\do##1{%
\ifinlist{##1}{\cbx@savekeys}
{\protected@xappto\cbx@citecall{%
[\csuse{prenote:##1}][\csuse{postnote:##1}]{##1}}}
{}}%
\dolistloop{\cbx@sortkeys}}
% internal list of sorted entry keys [patched to the original answer, new biblatex!]
\def\cbx@sortkeysinit{%
\ifcsundef{blx@slist@centry@\the\c@refsection @\blx@refcontext@context}
{}
{\global\letcs{\cbx@sortkeys}{blx@slist@centry@\the\c@refsection @\blx@refcontext@context}}}
\def\cbx@sortkeys{}
\makeatother
\addbibresource{biblatex-examples.bib}
\newcommand{\cmd}[1]{\textbackslash\texttt{#1}}
\setlength{\parindent}{0pt}
\begin{document}
\cmd{cite}: \cite{companion,ctan,vangennep,markey} \\
\cmd{cites}: \cites[e.g.][10]{companion}{ctan}{markey}[10--11]{vangennep} \\
\cmd{Cites}: \Cites{ctan}{markey}[e.g.][5--10]{companion}[10--11]{vangennep}
\printbibliography
\end{document}