双栏下表格和图片在LaTeX下的使用

在双栏下工作
1,插入双栏1张图片双栏下表格和图片在LaTeX下的使用
文章图片

\begin{figure*}[!hbt]
\centering
\includegraphics[height = 6.4cm, width = 16 cm]{process.eps}
\caption{The********.}
\label{fig:process}
\end{figure*}


注:****为需要输入的描述内容

注意第一行无*,即为插入单栏图片
2,插入双栏多张图片,控制显示行数
双栏下表格和图片在LaTeX下的使用
文章图片

\begin{figure*}[!t]
\centering
\subfigure[tree] {\includegraphics[height=4cm,width=6cm]{tree.eps}}
\subfigure[supervoxel] {\includegraphics[height=4cm,width=11cm]{vvv.eps}}
\caption{A *******}
\label{vvvandtree}
\end{figure*}


注:****为需要输入的描述内容



3 插入双栏复杂表格

双栏下表格和图片在LaTeX下的使用
文章图片



\begin{table*}[htbp]
%\setlength{\abovecaptionskip}{0pt}
%\setlength{\belowcaptionskip}{10pt}
\centering % 表居中
\caption{************}
\begin{tabular}{cccccccccccccccc} % {lccc} 表示各列元素对齐方式,left-l,right-r,center-c
\hline
*************************************************8
\hline % \hline 在此行下面画一横线
\multirow{2}{*}{***}
****************************\\
**************************\\
\hline
\multirow{2}{*}{***}
****************************\\
***************************\\
\hline

\end{tabular}
\label{tresult}
【双栏下表格和图片在LaTeX下的使用】\end{table*}

注:****为需要输入的描述内容和需要输入的表格文字
注意用&定位





参考文献
https://zhidao.baidu.com/question/533120935.html
http://blog.sina.com.cn/s/blog_57235cc70100jnpo.html
http://tieba.baidu.com/p/3118531288
http://jingyan.baidu.com/article/f0e83a258015c822e4910145.html







    推荐阅读