\cprotect
我使用和创建了一个章节标题\verb
。无星号版本可以正常工作,但有星号版本则不行。我应该如何正确使用这些命令?谢谢。
\documentclass{article}
\usepackage{cprotect}
\usepackage{kantlipsum}
\begin{document}
\cprotect\section{Using \verb|\cprotect| command}
\kant[1]
% starred version:
\cprotect\section*{Using \verb|\cprotect| command} % this produces an error
\kant[2]
\end{document}