IEEE Access 中的单列多部分图形

IEEE Access 中的单列多部分图形

我想要 IEEE Access 文章中有一个单列多部分图表。

我现在的代码就像

\begin{figure}[ht!]
\centering
\caption{Cap}
    \begin{subfigure}[b]{0.25\textwidth}
        \centering
        \includegraphics[width=\linewidth]{A.png}
        \caption{A}
        \label{fig:A}
    \end{subfigure}
    \hfill
    \begin{subfigure}[b]{0.25\textwidth}
        \centering
        \includegraphics[width=\linewidth]{B.png}
        \caption{B}
        \label{fig:B}
    \end{subfigure}
    \hfill
    \begin{subfigure}[b]{0.25\textwidth}
        \centering
        \includegraphics[width=\linewidth]{C.png}
        \caption{C}
        \label{fig:C}
    \end{subfigure}
    \vspace*{-10pt}
\end{figure}

如何在 IEEE Access 中将其重新格式化为\Figure标签,以使其成为单列?


工作示例:

\documentclass{ieeeaccess}

\usepackage{cite}
\usepackage{amsmath,amssymb,amsfonts}
\usepackage{algorithmic}
\usepackage{graphicx}
\usepackage{textcomp}
\usepackage{subcaption}

\begin{document}


\history{Date of publication xxxx 00, 0000, date of current version xxxx 00, 0000.}
\doi{10.1109/ACCESS.2017.DOI}

\title{FooFooFoo}


\author{\uppercase{First A. Author}\authorrefmark{1}, \IEEEmembership{Fellow, IEEE},
\uppercase{Second B. Author\authorrefmark{2}, and Third C. Author,
Jr}.\authorrefmark{3},
\IEEEmembership{Member, IEEE}}
\address[1]{National Institute of Standards and 
Technology, Boulder, CO 80305 USA (e-mail: [email protected])}
\address[2]{Department of Physics, Colorado State University, Fort Collins, 
CO 80523 USA (e-mail: [email protected])}
\address[3]{Electrical Engineering Department, University of Colorado, Boulder, CO 
80309 USA}
\tfootnote{This paragraph of the first footnote will contain support 
information, including sponsor and financial support acknowledgment. For 
example, ``This work was supported in part by the U.S. Department of 
Commerce under Grant BS123456.''}

\markboth
{Author \headeretal: Preparation of Papers for IEEE TRANSACTIONS and JOURNALS}
{Author \headeretal: Preparation of Papers for IEEE TRANSACTIONS and JOURNALS}

\corresp{Corresponding author: First A. Author (e-mail: author@ boulder.nist.gov).}



\begin{abstract}
foo
\end{abstract}

\begin{keywords}
foo
\end{keywords}



\titlepgskip=-15pt
\maketitle

\begin{figure}[ht!]
\centering
\caption{Cap}
    \begin{subfigure}[b]{0.25\textwidth}
        \centering
        \includegraphics[width=\linewidth]{A.png}
        \caption{A}
        \label{fig:A}
    \end{subfigure}
    \hfill
    \begin{subfigure}[b]{0.25\textwidth}
        \centering
        \includegraphics[width=\linewidth]{B.png}
        \caption{B}
        \label{fig:B}
    \end{subfigure}
    \hfill
    \begin{subfigure}[b]{0.25\textwidth}
        \centering
        \includegraphics[width=\linewidth]{C.png}
        \caption{C}
        \label{fig:C}
    \end{subfigure}
    \vspace*{-10pt}
\end{figure}

\EOD

\end{document}

答案1

不清楚您说的“单列”是什么意思。像这样吗?

在此处输入图片描述

\documentclass{ieeeaccess}

\usepackage{cite}
\usepackage{graphicx}
\usepackage{textcomp}
\usepackage{subcaption}

\usepackage{lipsum}

\begin{document}
\lipsum[11]
\begin{figure}[ht!]
\centering
\caption{Cap}
\setkeys{Gin}{width=\linewidth}
    \begin{subfigure}[b]{0.32\linewidth}
        \centering
        \includegraphics{example-image-duck}%{A.png}
        \caption{A}
        \label{fig:A}
    \end{subfigure}
    \hfill
    \begin{subfigure}[b]{0.32\linewidth}
        \centering
        \includegraphics{example-image-duck}%{B.png}
        \caption{B}
        \label{fig:B}
    \end{subfigure}
    \hfill
    \begin{subfigure}[b]{0.32\linewidth}
        \centering
        \includegraphics{example-image-duck}%{C.png}
        \caption{C}
        \label{fig:C}
    \end{subfigure}
\end{figure}
\lipsum
\EOD
\end{document}

或者像这样

在此处输入图片描述

其中被视为@Imran 评论:

\documentclass{ieeeaccess}

\usepackage{cite}
\usepackage{graphicx}
\usepackage{textcomp}
\usepackage{subcaption}

\usepackage{lipsum}

\begin{document}
\begin{figure*}[ht!]
\centering
\caption{Cap}
\setkeys{Gin}{width=\linewidth}
    \begin{subfigure}[b]{0.32\linewidth}
        \centering
        \includegraphics{example-image-duck}%{A.png}
        \caption{A}
        \label{fig:A}
    \end{subfigure}
    \hfill
    \begin{subfigure}[b]{0.32\linewidth}
        \centering
        \includegraphics{example-image-duck}%{B.png}
        \caption{B}
        \label{fig:B}
    \end{subfigure}
    \hfill
    \begin{subfigure}[b]{0.32\linewidth}
        \centering
        \includegraphics{example-image-duck}%{C.png}
        \caption{C}
        \label{fig:C}
    \end{subfigure}
\end{figure*}
\lipsum\lipsum
\EOD
\end{document}

相关内容