关于插图排版的问题,如何在分栏的模板中排好图片

2019-10-20 20:14发布

试了很多种方法,但是图片排版仍然有点问题,请大佬们帮忙看看: 目标打算排版成这样: ![](https://wenda.latexstudio.net/data/attach/191024/LBAim...

试了很多种方法,但是图片排版仍然有点问题,请大佬们帮忙看看: 目标打算排版成这样: ![](https://wenda.latexstudio.net/data/attach/191024/LBAimksi.png) 现在排版成这样: 相关部分代码: \documentclass[journal]{IEEEtran} \usepackage{amssymb} \usepackage{enumerate} \usepackage{graphicx} \usepackage{epstopdf} \usepackage{subfigure} \usepackage[centerlast]{caption} \usepackage{color} \usepackage{amsfonts} \usepackage{varwidth} %\usepackage{autobreak} \newtheorem{theorem}{Theorem}[section] \newtheorem{lemma}{Lemma} \newtheorem{proof}{Proof}[section] \begin{document} \begin{figure} %\vskip 0.2in \centering \begin{varwidth}[t]{\textwidth} \vspace{0pt} \includegraphics[height=2cm, width=3cm]{3-astro-tau30-4.eps} \end{varwidth} \qquad \begin{varwidth}[t]{\textwidth} \vspace{0pt} \includegraphics[height=2cm, width=3cm]{1-cov-tau5-4.eps} \end{varwidth} \vskip -0.2in \end{figure} \begin{figure} %\vskip 0.2in \centering \begin{varwidth}[ht]{\textwidth} \vspace{0pt} \includegraphics[height=4cm, width=5cm]{1-ijcnn1-tau5-4.eps} \end{varwidth} \qquad \begin{varwidth}[ht]{\textwidth} \vspace{0pt} \includegraphics[height=4cm, width=5cm]{1-rcv1-tau23-4.eps} \end{varwidth} \caption{ Convergence on the data-set a9a} \vskip -0.2in \end{figure} \end{document} 感谢三位大佬的回答,前两位大佬的我试了可能会插图到文末,导致变成这种情况: ![](https://wenda.latexstudio.net/data/attach/191024/OjhpzSes.png) 我想插图插在文章中间部分,不知道怎么实现,谢谢
3条回答
registor
2019-10-20 20:37
不太明白你的问题,猜测是相跨栏吧?这个可以用**`figure*`**环境实现: ```tex \begin{figure*} %\vskip 0.2in \centering \begin{varwidth}[t]{\textwidth} \vspace{0pt} \includegraphics[height=2cm, width=3cm]{example-image} \end{varwidth} \qquad \begin{varwidth}[t]{\textwidth} \vspace{0pt} \includegraphics[height=2cm, width=3cm]{example-image} \end{varwidth} \vskip -0.2in \end{figure*} \begin{figure*} %\vskip 0.2in \centering \begin{varwidth}[ht]{\textwidth} \vspace{0pt} \includegraphics[height=4cm, width=5cm]{example-image} \end{varwidth} \qquad \begin{varwidth}[ht]{\textwidth} \vspace{0pt} \includegraphics[height=4cm, width=5cm]{example-image} \end{varwidth} \caption{ Convergence on the data-set a9a} \vskip -0.2in \end{figure*} ``` 不过,我还是建议你可以研究一下floatrow宏包,挺好用的。

一周热门 更多>