将图片放置在双栏文章的底部

将图片放置在双栏文章的底部

我读过很多关于在双栏文章底部放置图片的帖子,并发现使用\usepackage{dblfloatfix}是正确的方法。但是,我不知道如何让图片显示在文章的第一页。

它将图形带到页面的底部,但在页面的底部第二页,而不是第一页。我尝试过结合H,但什么都没改变。

\documentclass[twoside,twocolumn,9pt]{article}
\usepackage{lipsum}  % For fill text
\usepackage{graphicx} % For example picture

\usepackage{float}
\usepackage{dblfloatfix}

\begin{document}
\twocolumn[
    \begin{@twocolumnfalse}
    % Header first page
    \noindent\LARGE{\textbf{Article title which doesn't split in two columns}}
    \end{@twocolumnfalse} \vspace{1cm}

  ]


\section{Section A}
\lipsum[1-4]

\begin{figure*}[!b]
 \centering
 \includegraphics[width=0.4\linewidth]{example-image-a}
\end{figure*}

\section{Section B}
\lipsum[5-8]

\section{Section C}
\lipsum[9-14]

\end{document}

我将非常感激您的帮助,提前谢谢您。

答案1

正常情况下,第一页底部不允许有超过两列的图表(因为文章信息通常作为第一列底部的脚注)。如果你仍然喜欢在那里放图表,你可以使用这个stfloats包来帮助自己:

\documentclass[twoside,twocolumn,9pt]{article}
\usepackage{lipsum}   % For fill text
\usepackage{graphicx} % For example picture

\usepackage{stfloats} % <---

\begin{document}
\twocolumn[
    % \begin{@twocolumnfalse}
    % Header first page
    % \noindent
    \LARGE\textbf{Article title which doesn't split in two columns}
    % \end{@twocolumnfalse} 
    \vspace{1cm}
          ]

\section{Section A}
\lipsum[1]
\begin{figure*}[!b]
 \centering
 \includegraphics[width=0.6\linewidth]{example-image-a}
\end{figure*}
\lipsum[2-4]

\section{Section B}
\lipsum[5-8]

\section{Section C}
\lipsum[9-14]

\end{document}

在此处输入图片描述

相关内容