标签:latex 子图排版 子标题 latex图形排版 latex排版
在写paper时,经常遇到LaTeX排版指定行列的子图形。以2X2子图为例,代码如下:
\usepackage{subfig} \begin{figure*}[!htb] \centering \subfloat[Location of Cell Towers]{\includegraphics[width=0.47\textwidth]{figures/geo_tower.pdf}} & \subfloat[Number of Records]{\includegraphics[width=0.47\textwidth]{figures/geo_records.pdf}} \ \subfloat[User Population]{\includegraphics[width=0.47\textwidth]{figures/geo_population.pdf}} & \subfloat[Data Volume]{\includegraphics[width=0.47\textwidth]{figures/geo_data_volume.pdf}} \ \caption{Geographic Distribution of Cell Towers, Number of Records, User Population and Data Volume} \label{fig:geo_distribution} \vspace{0.2in} \end{figure*}
版权声明:本文为博主原创文章,未经博主允许不得转载。
标签:latex 子图排版 子标题 latex图形排版 latex排版
原文地址:http://blog.csdn.net/vernice/article/details/47801063