p**c 发帖数: 26 | 1 比如说我有4副小图,现在想画到同一个大图里面去,具体就像附件中的4个小图拼成的
大图一样。
请达人指点下,多谢。 |
A**u 发帖数: 2458 | 2 minipage?
【在 p**c 的大作中提到】 : 比如说我有4副小图,现在想画到同一个大图里面去,具体就像附件中的4个小图拼成的 : 大图一样。 : 请达人指点下,多谢。
|
b*******t 发帖数: 33714 | 3 \usepackage[caption=false]{subfig}
\usepackage[footnotesize]{caption}
\begin{figure}[htbp]\centering
\subfloat[]{\label{aa}\includegraphics{a.jpg}}
\subfloat[]{\label{bb}\includegraphics{b.jpg}}\\
\subfloat[]{\label{cc}\includegraphics{c.jpg}}
\subfloat[]{\label{dd}\includegraphics{d.jpg}}\\
\caption{Subfloat test: \subref{aa} subplot a \subref{bb} subplot b \subref{
cc} subplot c \subref{dd} subplot d.}
\label{fig:test}
\end{figure}
【在 p**c 的大作中提到】 : 比如说我有4副小图,现在想画到同一个大图里面去,具体就像附件中的4个小图拼成的 : 大图一样。 : 请达人指点下,多谢。
|
p**c 发帖数: 26 | 4 thanks, it works very well.
subref{
【在 b*******t 的大作中提到】 : \usepackage[caption=false]{subfig} : \usepackage[footnotesize]{caption} : \begin{figure}[htbp]\centering : \subfloat[]{\label{aa}\includegraphics{a.jpg}} : \subfloat[]{\label{bb}\includegraphics{b.jpg}}\\ : \subfloat[]{\label{cc}\includegraphics{c.jpg}} : \subfloat[]{\label{dd}\includegraphics{d.jpg}}\\ : \caption{Subfloat test: \subref{aa} subplot a \subref{bb} subplot b \subref{ : cc} subplot c \subref{dd} subplot d.} : \label{fig:test}
|
b*******t 发帖数: 33714 | 5 any time ;)
【在 p**c 的大作中提到】 : thanks, it works very well. : : subref{
|