LaTeX在双栏模式下插入跨栏图表

LaTeX中插入eps图片的命令是:

[plain]  view plain  copy
  1. \begin{figure}  
  2. \centering  
  3. \includegraphics[width=8cm]{picture.eps}  
  4. \caption{This is a picture.}  
  5. \label{fig:picture001}  
  6. \end{figure}  

在双栏编辑模式下,图片只能在一栏中显示,而且如果图片的宽度超过单栏文本宽度,则只能显示其中一部分,剩下的部分会”溢出“。


在双栏模式下插入跨栏图,方法其实很简单,将环境

\begin{figure}

。。。

\end{figure}


替换为带*的环境即可:

\begin{figure*}

。。。

\end{figure*}


在上例中,插入跨栏图的命令如下:

[plain]  view plain  copy
  1. \begin{figure*}  
  2. \centering  
  3. \includegraphics[width=8cm]{picture.eps}  
  4. \caption{This is a picture.}  
  5. \label{fig:picture001}  
  6. \end{figure*}  


同时纵向排列插入多个单栏图片

[plain]  view plain  copy
  1. \begin{figure}  
  2. \centering  
  3. \includegraphics[width=8cm]{picture1.eps}  
  4. \includegraphics[width=8cm]{picture2.eps}  
  5. \includegraphics[width=8cm]{picture3.eps}  

 
  \caption{This is a picture.} 
  
 
  \label{fig:pictures}\end{figure} 
  
 
  上面的命令得到三个 
  纵向排列 
  的图,单栏图,不跨栏。三个图共享一个标题caption和编号label 
  

横向排列多个跨栏图:

[plain]  view plain  copy
  1. \begin{figure*}  
  2. \centering  
  3. \includegraphics[width=8cm]{picture01.eps}  
  4. \includegraphics[width=8cm]{picture02.eps}  
  5. \includegraphics[width=8cm]{picture03.eps}  

 
  \caption{This is a picture.} 
  
 
  \label{fig:pictures2} 
  
\end{figure*}
 
  得到三个 
  横向排列 
  的图,双栏图,三个图占两个栏,三个图共享一个标题caption和编号label 
  



双栏模式下插入单栏表:

[plain]  view plain  copy
  1. \begin{table}  
  2. \centering  
  3. \caption{Table of students.}  
  4. \begin{tabular}{|c|c|c|}  
  5. \hline  
  6. Name & Age & Gender  \\ \hline  
  7. Cat & 3 & 3.85 & Girl  \\ \hline  
  8. Dog & 5 & Boy \\  
  9. \hline  
  10. \end{tabular}  
  11. \label{table:stu}  
  12. \end{table}  


在双栏模式下插入跨栏表格,方法其实也很简单,将环境

\begin{table}

。。。

\end{table}


替换为带*的环境即可:

\begin{talbe*}

。。。

\end{table*}

你可能感兴趣的:(latex)