我正在做一些家庭作业,我正在检查以确保我的代码可以编译为PDF。我不断得到一个错误:
! Undefined control sequence.
<recently read> \urcorner
l.74 (($\urcorner
$
The control sequence at the end of the top line
of your error message was never \def'ed. If you have
misspelled it (e.g., `\hobx'), type `I' and the correct
spelling (e.g., `I\hbox'). Otherwise just continue,
and I'll forget about whatever was undefined.
这是我的代码:
这是我的序言:
答案 0 :(得分:1)
\urcorner
由amssymb
定义,您在序言中未包含该内容。所以,添加
\usepackage{amssymb}
到您的序言中,您就可以使用\urcorner
(以及\ulcorner
,\llcorner
和\lrcorner
)。
继续您的文档构建。我使用enumerate
环境来设置您的问题。也许也可以使用enumitem
格式化标签以满足您的需求:
\usepackage{amssymb,enumitem}
...
\begin{enumerate}[label={\arabic*)}]
\item <some item>
\item <some other item>
...
\item <last item>
\end{enumerate}
从不只使用\\
结束一行。
答案 1 :(得分:0)
类似问题解决https://tex.stackexchange.com/questions/85024/symbols-in-math-mode
为什么不使用
\begin{enumerate}
\item First item
\item Second item ...
\end{enumerate}
用于数字列表?