p****s 发帖数: 32405 | 1 1. 对这个公式, 能不能不显示编号算了
2. 如果我从某处用"\\"断开另起一行,这里出来两公式编号. 这也不是我想要的. |
b*********n 发帖数: 173 | 2 1. 对这个公式, 能不能不显示编号算了
使用\nonumber。例如:
\begin{equation}
blablabla \nonumber\\
\end{equation}
2. 如果我从某处用"\\"断开另起一行,这里出来两公式编号. 这也不是我想要的.
使用\begin{split}...\end{split}。例如:
\begin{equation}
\begin{split}
blabla \\
blabla
\end{split}
\end{equation} |
p****s 发帖数: 32405 | 3 cool, 待我试试.
谢了先!
【在 b*********n 的大作中提到】 : 1. 对这个公式, 能不能不显示编号算了 : 使用\nonumber。例如: : \begin{equation} : blablabla \nonumber\\ : \end{equation} : 2. 如果我从某处用"\\"断开另起一行,这里出来两公式编号. 这也不是我想要的. : 使用\begin{split}...\end{split}。例如: : \begin{equation} : \begin{split} : blabla \\
|
S*********g 发帖数: 5298 | 4 第一种要用eqnarray
【在 b*********n 的大作中提到】 : 1. 对这个公式, 能不能不显示编号算了 : 使用\nonumber。例如: : \begin{equation} : blablabla \nonumber\\ : \end{equation} : 2. 如果我从某处用"\\"断开另起一行,这里出来两公式编号. 这也不是我想要的. : 使用\begin{split}...\end{split}。例如: : \begin{equation} : \begin{split} : blabla \\
|
p****s 发帖数: 32405 | 5 至于第二个, 我试了下, 似乎split对eqnarray没效果.
【在 S*********g 的大作中提到】 : 第一种要用eqnarray
|
b*********n 发帖数: 173 | 6 为什么?try the following code.
\usepackage[centertags]{amsmath}
\begin{equation}
H_{R} = \sum_{i=1}^{N} \left( \frac{ \text{Revenue}_{i} } {
\sum_{i=1}^{N} \text{Revenue}_{i} } \right)^2 \nonumber
\end{equation}
【在 S*********g 的大作中提到】 : 第一种要用eqnarray
|
c**z 发帖数: 1014 | 7 是\\要用到eqnarray
【在 b*********n 的大作中提到】 : 为什么?try the following code. : \usepackage[centertags]{amsmath} : \begin{equation} : H_{R} = \sum_{i=1}^{N} \left( \frac{ \text{Revenue}_{i} } { : \sum_{i=1}^{N} \text{Revenue}_{i} } \right)^2 \nonumber : \end{equation}
|
e*******e 发帖数: 248 | 8 我一般用这个办法:
\begin{equation}
\begin{array}[lll]
blabla &=&blabla \\
&=&blabla \\
...
\end{array}
label{LABEL}
\end{equation}
这样,公式的 编号会自然的放在这些行的中间。有时候用\nonumber会出现一些莫名其
妙的错。 |
T*******n 发帖数: 493 | 9 The eqnarray environment has bugs in the way it calculates spacing.
Use amsmath instead:
\usepackage{amsmath}
\begin{equation}
\begin{split}
x &= \text{first line} \\
&+ \text{second line, only one equation number}
\end{split}
\end{equation}
or
\begin{multline}
x = \text{this line flushed left} \\
\text{this line flushed right, one equation number}
\end{multline}
If you have many equations and some of them are long, use
split inside gather or align instead of inside equation.
【在 p****s 的大作中提到】 : 1. 对这个公式, 能不能不显示编号算了 : 2. 如果我从某处用"\\"断开另起一行,这里出来两公式编号. 这也不是我想要的.
|
c****r 发帖数: 185 | 10 Read the User's Guide for amsmath.
You'll get all you need. |