其他分享
首页 > 其他分享> > LaTeX在双栏模式下插入跨栏图表

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

作者:互联网

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

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

\begin{figure}  
\centering  
\includegraphics[width=8cm]{picture.eps}  
\caption{This is a picture.}  
\label{fig:picture001}  
\end{figure}  

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

 

 

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

\begin{figure}

......

\end{figure}

  

 

替换为带   *   的环境即可:

 

\begin{figure*}

...... \end{figure*}

  

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

 

\begin{figure*}  
\centering  
\includegraphics[width=8cm]{picture.eps}  
\caption{This is a picture.}  
\label{fig:picture001}  
\end{figure*} 

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

\begin{figure}  
\centering  
\includegraphics[width=8cm]{picture1.eps}  
<pre name="code" class="plain">\includegraphics[width=8cm]{picture2.eps}  
<pre name="code" class="plain"><pre name="code" class="plain">\includegraphics[width=8cm]{picture3.eps}

\caption{This is a picture.}


\label{fig:pictures}\end{figure}


上面的命令得到三个 纵向排列 的图,单栏图,不跨栏。三个图共享一个标题caption和编号label

横向排列多个跨栏图:

\begin{figure*}  
\centering  
\includegraphics[width=8cm]{picture01.eps}  
<pre name="code" class="plain">\includegraphics[width=8cm]{picture02.eps}  
<pre name="code" class="plain"><pre name="code" class="plain">\includegraphics[width=8cm]{picture03.eps} 

\caption{This is a picture.} \label{fig:pictures2} \end{figure*}

  


得到三个 横向排列 的图,双栏图,三个图占两个栏,三个图共享一个标题caption和编号label

双栏模式下插入单栏表:

\begin{table}  
\centering  
\caption{Table of students.}  
\begin{tabular}{|c|c|c|}  
\hline  
Name & Age & Gender  \\ \hline  
Cat & 3 & 3.85 & Girl  \\ \hline  
Dog & 5 & Boy \\  
\hline  
\end{tabular}  
\label{table:stu}  
\end{table} 

  

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

\begin{table}

......

\end{table}

替换为带*的环境即可:

\begin{undefinedtalbe*}

......

\end{table*}

标签:LaTeX,begin,end,figure,双栏,eps,width,跨栏,includegraphics
来源: https://www.cnblogs.com/ltkekeli1229/p/16100104.html