如何在参考书目之外使用 biblatex 的 \addperiod?

如何在参考书目之外使用 biblatex 的 \addperiod?

有时\addperiodfrom 命令biblatex在其他情况下也很有用。如何在参考书目之外使用它?

M(N)WE:

\documentclass{book}

\usepackage{biblatex}

\begin{document}

text \addperiod

\end{document}

答案1

该命令内部定义为\blx@imc@addperiod。要使其可用:

\documentclass{book}

\usepackage{biblatex}

\makeatletter
\newcommand{\addperiod}{\blx@imc@addperiod}  
\makeatother

\begin{document}

text \addperiod

\end{document}

相关内容