\caption 命令一般将标题置于图形或表格的下方。可以利用小页
环境来欺骗 \caption 命令,从而使它把标题放在图形的一侧。
例如命令:
\begin{figure}
\centering
\begin{minipage}[c]{.45\textwidth}
\centering
\caption{Caption on the Side}
\label{fig:side:caption}
\end{minipage}%
\begin{minipage}[c]{.45\textwidth}
\centering
\includegraphics[width=\textwidth]{graphic.eps}
\end{minipage}
\end{figure}
得到如图 24.1 的结果。在小页之间加入像 \hfill
或 \hspace{.05\textwidth} 的水平距离可能会更好些。
|