如何嵌入 2 列格式的大尺寸图表

如何嵌入 2 列格式的大尺寸图表

我用amcs模板

这是我需要添加到论文中的图表: 在此处输入图片描述

但是,它的大小太大,无法放入一列格式。这是我的代码:

\documentclass{amcs}

    \begin{document}
    \begin{figure}[H]
    \includegraphics [scale=0.20]{Figure9Graph5.png}
    \caption{Algorithms Running time over testing dataset}
    \label{fig:Test5}
    \end{figure}

     \end{document}

我该怎么做才能使其内容可见且仍与模板格式相匹配?

答案1

amcs课程支持figure*

\documentclass{amcs}

\usepackage{lipsum} % just for the example

\begin{document}

\title{Title}
\author[ad1][]{First name LAST NAME}

\correspondingauthor{Fifth AUTHOR}

\address[ad1]{Institute of xxx xxx xxx xxx\\ University of xxx xxx, 
  Address xxx xxx xx xxx xxx\\ e-mail: \url{xxx xx xxx}}

\maketitle

\lipsum[1-3]

\begin{figure*}

\includegraphics[
  width=\textwidth,
  height=4cm, % for emulating your picture
]{example-image}

\caption{Algorithms Running time over testing dataset}
\label{fig:Test5}

\end{figure*}

\lipsum[1-30]

\end{document}

在此处输入图片描述

相关内容