texniccenter 中的错误报告

texniccenter 中的错误报告

我曾在 texniccenter 中写过这个,当我按 ctrl+F7 时,它给出了“未定义控制序列”的错误。我不明白我做错了什么。我的代码有问题吗?我还下载了包“bbm”并在开始时添加了它,但什么都没起作用。有人能帮帮我吗?希望这对这个论坛来说不是太愚蠢。

\documentclass{article}
\usepackage{amsmath}
\usepackage{bbm}
\begin{document}
\section{Problems}
\label{sec:Problems}
\begin{flushleft}
This approach helps a lot since equality cases can be easily obtained.
The left side's >equality case is $r = 1$.
The right side's equality case occur when $y = rx$ passes
through the interior of exactly $n$ squares.
Such cases occur when $r$ is either an
integer, reciprocal of an integer, $r \geq n$ or $0 < r \leq 1/n$.
  $\blacksquare$
\end{flushleft}

2.Determine all functions $f : \mathbb{R} \to \mathbb{R}$ such that
\[f(xy+f(x))=f(x)f(y)+x , \ \ \ \forall x,y \in  \mathbb{R}.\] 
\end{document}

这是我写下的。我的对齐在这里相当丑陋,对此我深表歉意,但丑陋总比错误的代码要好。另外,这是我第一次使用编辑器。我通常在启用 \LaTeX\ 的平台上写作,例如 math SE、MO 等。此外,“这种方法...”中的部分是另一个问题的结尾,我省略了所有内容,但保留了这一部分,以便可以清楚地了解错误。另外,我想在解决方案结束时给出一个黑色方块,我尝试给出它,但也会给出“未定义的控制序列:。请帮助我,非常感谢。

答案1

如果您想使用包bbm,正确的命令应该\mathbbm{R}在这里。但由于您需要为您提供更多套餐\blacksquare我推荐amssymb最常用的包含该包的包amsfonts。后者包含命令(\mathbb{R}) 您目前正在使用。

我建议使用以下 MWE:

% arara: pdflatex

\documentclass{article}
\usepackage{amssymb}
\usepackage{mathtools} % not needed here, but it loads most of the stuff you will need. E.g. `amsmath`

\begin{document}
\section{Problems}
\label{sec:Problems}
\begin{flushleft}
This approach helps a lot since equality cases can be easily obtained.
The left side's equality case is $r = 1$.
The right side's equality case occurs when $y = rx$ passes
through the interior of exactly $n$ squares.
Such cases occur when $r$ is either an
integer, reciprocal of an integer, $r \geq n$ or $0 < r \leq 1/n$.
 $\blacksquare$
\end{flushleft}

2. Determine all functions $f : \mathbb{R} \to \mathbb{R}$ such that
\[f(xy+f(x))=f(x)f(y)+x , \quad \forall x,y \in  \mathbb{R}.\] 
\end{document}

在此处输入图片描述

相关内容