首先一定要插入两个包:
\usepackage{amsmath}
\usepackage{amssymb}
如果不插入包的话,每次运行到aligned就会报错
然后文章中可如下编译公式:
\begin{equation}\label{1}
\begin{aligned}
a & b c \\
& d e
\end{aligned}…
行内公式
代码:
%错误示范
Then it sets ABETs the master public key $m p k_{A B E T}\left(g, h, u, v, w, e(g, g)^{\alpha}, e(g, h)^{\delta},\left\{h_{i}^{\alpha}\right\}_{i \in[1, n]},\left\{g_{i}g^{z_{i}}\right\}_{i \in[1, n]},{{h}^{\alpha }},{…
1. 公式换行
公式换行的方式有很多种,介绍三种
(1)用equation结合aligned:
\begin{equation}\label{eqn:1}
\begin{aligned}
& a b \\
& c d \\
& e f.
\end{aligned}
\end{equation}
结果为: &a…
其中LRN的公式如下: 论文中说 Denoting by aix,y the activity of a neuron computed by applying kernel i at position (x, y) and then applying the ReLU nonlinearity, the response-normalized activity bix,y is given by the expression
LRN是用在激活之后…
LRN(Local Response Normalization)
作用:将不同卷积核RELU后的feature归一化,平滑处理,能增加泛化能力。 原因:生物方面,玄学 Alexnet提出 公式: 其中i代表第i个卷积核 a x , y i , 表 示 第…