diff options
Diffstat (limited to 'Master/texmf-dist/doc/latex/hitszthesis/tex/chapter03.tex')
-rw-r--r-- | Master/texmf-dist/doc/latex/hitszthesis/tex/chapter03.tex | 49 |
1 files changed, 30 insertions, 19 deletions
diff --git a/Master/texmf-dist/doc/latex/hitszthesis/tex/chapter03.tex b/Master/texmf-dist/doc/latex/hitszthesis/tex/chapter03.tex index ba66e82f4d1..8bd06139172 100644 --- a/Master/texmf-dist/doc/latex/hitszthesis/tex/chapter03.tex +++ b/Master/texmf-dist/doc/latex/hitszthesis/tex/chapter03.tex @@ -34,23 +34,6 @@ \right. \end{equation} -如果需要对公式的子公式进行编号,则使用\lstinline{subnumcases}环境: -\begin{lstlisting} -\begin{subnumcases}{\label{w} w\equiv} - 0 & $c = d = 0$\label{wzero}\\ - \sqrt{|c|}\,\sqrt{\frac{1 + \sqrt{1+(d/c)^2}}{2}} & $|c| \geq |d|$ \\ - \sqrt{|d|}\,\sqrt{\frac{|c/d| + \sqrt{1+(c/d)^2}}{2}} & $|c| < |d|$ -\end{subnumcases} -\end{lstlisting} -上述代码输出如下: -\begin{subnumcases}{\label{w} w\equiv} -0 & $c = d = 0$\label{wzero}\\ -\sqrt{|c|}\,\sqrt{\frac{1 + \sqrt{1+(d/c)^2}}{2}} & $|c| \geq |d|$ \\ -\sqrt{|d|}\,\sqrt{\frac{|c/d| + \sqrt{1+(c/d)^2}}{2}} & $|c| < |d|$ -\end{subnumcases} - -\equref{w}中,\lstinline{label:w}为整个公式的编号,\lstinline{label:wzero}为子公式的编号。 - % 条标题 \subsection{一类连续复值 Hopf\/ield 神经网络} @@ -107,7 +90,10 @@ y_l(k) = \csign_K\left(\sum\limits_{j=1}^n w_{lj}\cdot x_j(k)\right) 异步方式:网络中的神经元状态等概率地依\equref{eqiter}进行更新,一次只更新一个神经元状态; 同步方式:网络的每次迭代中,所有神经元状态同时被更新,即依照下式更新:\begin{equation} -{\mathbf{ X}}(k+1)=\mathbf{ Y}(k)=\csign[\mathbf{ W }\cdot\mathbf{ X }(k)] +% 若使用XITS字体: +% <\mathbfup> 与 <\mathbf> 的效果相同,都是直立加粗 +% 斜体加粗使用 <\mathbfit> +{\mathbf{ X}}(k+1)=\mathbf{ Y}(k)=\csign[\mathbf{ W }\cdot\mathbf{ X }(k)] \end{equation} 其中$\mathbf{ X}(k)$为神经元状态$x(k)$组成的列向量,$\mathbf{ W}=(w_{kj})$为整个网络的连接权矩阵。 @@ -316,4 +302,29 @@ L=\frac{1}{N}\left(\Big|\theta'-\theta_0\Big|+\sum\limits_i^n\lambda\omega_i^2\r % 证明环境 \begin{proof} 以下是一段无意义文字:\lipsum[5] -\end{proof}
\ No newline at end of file +\end{proof} + +如果需要对公式的子公式进行编号,则使用\lstinline{subeqnarray}环境: +\begin{lstlisting} +\begin{subeqnarray} +\label{eqw} +\slabel{eq0} +x & = & a \times b \\ +\slabel{eq1} +& = & z + t\\ +\slabel{eq2} +& = & z + t +\end{subeqnarray} +\end{lstlisting} +上述代码输出如下: +\begin{subeqnarray} +\label{eqw} +\slabel{eq0} +x & = & a \times b \\ +\slabel{eq1} +& = & z + t\\ +\slabel{eq2} +& = & z + t +\end{subeqnarray} + +\equref{eqw}中,\lstinline{eqw}为整个公式的标签,\lstinline{slabel}为子公式的标签。
\ No newline at end of file |