带星号的部分标题内的 \cprotect 和 \verb 命令

带星号的部分标题内的 \cprotect 和 \verb 命令

\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}

答案1

在此处输入图片描述

\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}

相关内容