x****y 发帖数: 30 | 1 hi,
I know how to use latex to put two figures side by side (left and right),
but how to make two figures top and bottom?
any template code?
Thanks |
S*********g 发帖数: 5298 | 2 \begin{figure
\includegraphics{top.eps}\\
\includegraphics{bottom.eps}
\end{figure}
【在 x****y 的大作中提到】 : hi, : I know how to use latex to put two figures side by side (left and right), : but how to make two figures top and bottom? : any template code? : Thanks
|
x****y 发帖数: 30 | 3 Thanks. it works.
But the space between top and bottom figure is kind of large. based on your
template, how can I reduce their inter-space?
Thanks again! |
S*********g 发帖数: 5298 | 4 \vspace{-.2in}
your
【在 x****y 的大作中提到】 : Thanks. it works. : But the space between top and bottom figure is kind of large. based on your : template, how can I reduce their inter-space? : Thanks again!
|
T*******n 发帖数: 493 | 5 \begin{figure}
\includegraphics{top.eps}\\[-6pt] % <== here
\includegraphics{bottom.eps}
\end{figure}
your
【在 x****y 的大作中提到】 : Thanks. it works. : But the space between top and bottom figure is kind of large. based on your : template, how can I reduce their inter-space? : Thanks again!
|