B*B 发帖数: 87 | 1 我写下一个超长的矩阵,latex以后dvi只能显示前半部分,
后面就不显示了,也不换行。
我想让latex把矩阵横过来,这样可能可以显示,不知道应该怎么做。
或者可以缩小点字体,让公式变短点?也不知道该怎么做。
或者高人知道还有别的方法怎么解决这个超长公式的显示问题。
谢谢!
我的代码如下
\begin{equation}
\begin{pmatrix}
P^2_{g}+P^2_{b}+(1-w)(1-\frac{N+1}{N}w)P^2_{ig}+2P_{b}P_{g}+(2-\frac{2N+1}{N
}w)P_{g}P_{ig}+(2-\frac{2N+1}{N}w)P_{b}P_{ig} & (2N+1)wP^2_{b}-(1-w)\frac{N+
1}{N}wP^2_{ig}+(2N+1)wP_{b}P_{g} & [(N^2+N)w^2-Nw]P^2_{b}-NwP_{b}P_{g}-NwP_{
b}P_{ig} & [(N+1)w^2-w]P^2_{b}-wP_{b}P_{g}-wP_{b}P_{ig} \\ %(s1 s2 s3 s4)
(1-w)wP^2_{ig}+ |
D****r 发帖数: 309 | 2 I am afraid even use font size of \tiny and landscape orientation, your
matrix could not fit in the page width.
Check this:
http://www.latex-community.org/forum/viewtopic.php?f=4&t=1703
But aware of which compiler latex=>ps=>pdf, or latexpdf. |
a****9 发帖数: 418 | 3 可以这样让矩阵横过来
\begin{landscape}
\begin{figure}
\begin{equation}
here goes your matrix
\end{equation}
\end{figure}
\end{landscape}
{N
【在 B*B 的大作中提到】 : 我写下一个超长的矩阵,latex以后dvi只能显示前半部分, : 后面就不显示了,也不换行。 : 我想让latex把矩阵横过来,这样可能可以显示,不知道应该怎么做。 : 或者可以缩小点字体,让公式变短点?也不知道该怎么做。 : 或者高人知道还有别的方法怎么解决这个超长公式的显示问题。 : 谢谢! : 我的代码如下 : \begin{equation} : \begin{pmatrix} : P^2_{g}+P^2_{b}+(1-w)(1-\frac{N+1}{N}w)P^2_{ig}+2P_{b}P_{g}+(2-\frac{2N+1}{N
|