c*********9 发帖数: 229 | 1 good question. i think most of them, if not all, are in focus.
the reason that they appear a little fuzzy is because the pictures
are reszied in such a way the longest side only has 500 pixels.
if you view the original image, they will look clear even though
a bit small. :-) |
|
k**m 发帖数: 222 | 2 我用如下的方式在LaTex中显示一组公式,但是觉得占的页面太大,试过\resizebox 但是
不成功, 请问如何缩小它?
\begin{figure}
\begin{eqnarray}
.....\\
......
\end{eqnarray}
\caption{aaaa}
\label{fig:aaa}
\end{figure} |
|
T*******n 发帖数: 493 | 3 Easiest way to do this is
\begingroup
\footnotesize % or \small
\begin{equation}
...
\end{equation}
\endgroup |
|