有时\addperiod
from 命令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}