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

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条回答
不知道你想排成啥样子,给个例子,你自己看吧。话说我不知道你用 `varwidth` 是为了什么。 ```tex \documentclass[final,5p,times,twocolumn]{elsarticle} \usepackage{graphicx} \usepackage{caption,subcaption} \usepackage{lipsum} \title{Sample Figures} \author{Knowledge is power} \journal{Nuclear Physics B} \begin{document} \maketitle \section{Lipsum} \lipsum[1-3] \begin{figure} \begin{subfigure}{0.47\linewidth} \includegraphics[width=\linewidth]{example-image-a.pdf} \caption{Example A} \end{subfigure}\hfill \begin{subfigure}{0.47\linewidth} \includegraphics[width=\linewidth]{example-image-b.pdf} \caption{Example B} \end{subfigure} \caption{Example A \& B} \end{figure} \section{LIPSUM} \lipsum[4-6] \begin{figure*}[ht] \begin{subfigure}{0.47\linewidth} \includegraphics[width=\linewidth]{example-image-c.pdf} \caption{Example C} \end{subfigure}\hfill \begin{subfigure}{0.47\linewidth} \includegraphics[width=\linewidth]{example-image-c.pdf} \caption{Example D} \end{subfigure} \caption{Example C \& D} \end{figure*} \lipsum[7-20] \end{document} ```

作者追问:2019-10-24 15:06

你好,我试了一下你的代码,但是插图仍然还是排版在最后面,没有插在文章中间,不知道什么情况

一周热门 更多>