初学者的问题——未定义的控制序列

初学者的问题——未定义的控制序列

我正在尝试产生以下结果:

[/ 或 ?] - 搜索文本模式,按 Enter 键跳转到该模式

然后我尝试了以下操作:
\item [\/ or \?] - Search for a pattern of text, jump to it by hitting Enter

但后来,我得到了“未定义的控制序列”。

我究竟做错了什么?

答案1

LaTeX *中的控制序列都不\/是,这会导致错误。相反,您可能正在寻找:\?

在此处输入图片描述

\documentclass{article}
\begin{document}
\begin{description}
  \item [\texttt{/} or \texttt{?}] - Search for a pattern of text, jump to it by hitting Enter
\end{description}
\end{document}

上述最小示例在环境的中以/?宽 Computer Modern(或打字机样式)字体排版。不确定您的上下文到底是什么,但如果您想包含方括号,请使用description\item[...]

\item [{[\texttt{/} or \texttt{?}]}] ...

而是将 的可选参数的内容放在\item一个组中,而不是让 TeX 因使用不匹配的括号而感到困惑,并导致间距问题:

在此处输入图片描述

*嗯,\/是一个控制序列(用作斜体校正),但不是你想要的那个……

相关内容