乳胶中未定义的控制序列

乳胶中未定义的控制序列

这里展示了我的代码片段。我不明白为什么我会收到未定义控制序列的错误。我还包含了包amsmath

\subsection{Logistic Regression}
\noindent $p_i=P(y_i=1)$ and $(x_i\in\mathbb{R})^d$. The binary responses are modelled using the following formulation $$\log{{p_{i}}\over{1-p_{i}}}={{\beta}}^{T}{\bf x}_{i}\qquad\text{or}\qquadp_{i}={{\exp({{\beta}}^{T}{\bf x}_{i})}\over{1+\exp({{\beta}}^{T}{\bf x}_{i})}}$$ where $\beta\in\mathbb{R}^d$ are some unknown regression coefficients often estimated using maximum likelihood. 

答案1

要使用\mathbb,您还需要添加amssymb

在此处输入图片描述

在这种情况下,似乎没有必要\noindent(除非您修改了默认的章节标题)。请注意,我已经完全重写了数学表达式:

  • 不要使用$$...$$来显示数学运算;而应使用\[... \]。请参阅为什么\[…比…\]更好?$$$$

  • 不要使用{<num>}\over{<denom>}分数。相反,使用\frac{<num>}{<denom>};

  • 不要过度使用牙套;它们可以改变表达式中元素的间距。

答案2

以下是您的代码片段的完善版本:

\documentclass{article}
\usepackage{amsmath}
\usepackage{amssymb} % for \mathbb

\begin{document}

\subsection{Logistic Regression}

$p_i=P(y_i=1)$ and $(\mathbf{x}_i\in\mathbb{R}^d)$. The binary responses are 
modelled using the following formulation
\[
\log \frac{p_{i}}{1-p_{i}}=\beta^{T}\mathbf{x}_{i}
\qquad\text{or}\qquad
p_{i}=\frac{\exp(\beta^{T}\mathbf{x}_{i})}{1+\exp(\beta^{T}\mathbf{x}_{i})}
\]
where $\beta\in\mathbb{R}^d$ are some unknown regression coefficients often 
estimated using maximum likelihood.

\end{document}

在此处输入图片描述

相关内容