如何在 achemso 中添加子图

如何在 achemso 中添加子图

我正在使用\documentclass{article}为期刊撰写支持信息,并被要求改用achemso包。但是当我更改\documentclass{article}为时\documentclass[journal=jacsat,manuscript=article]{achemso},我无法使用 subfigures 包,并且整个布局都会受到影响。有没有办法使用achemso包来使用 subfigures?

答案1

您可以改用subcaption包:

\documentclass[journal=jacsat,manuscript=suppinfo]{achemso}
\usepackage{duckuments}
\usepackage{lipsum}
\usepackage{subcaption}
\usepackage{graphicx}

\author{First Author}
\email{[email protected]}
\author{Second Author}
\email{[email protected]}
\affiliation[First University]
{Department of Chemistry, First University, Unknown Town}
\alsoaffiliation[Second University]
{Department of Chemistry, Second University, Nearby Town}

\title{Paper title}

\begin{document}
\lipsum[1-2]
\begin{figure}[ht]
    \begin{subfigure}{0.3\linewidth}
        \includegraphics[width=\textwidth]{example-image-duck}
        \caption{Subcaption A}
    \end{subfigure}
\hfill
    \begin{subfigure}{0.3\linewidth}
    \includegraphics[width=\textwidth]{example-image-duck}
    \caption{Subcaption B}
\end{subfigure}
\hfill
    \begin{subfigure}{0.3\linewidth}
    \includegraphics[width=\textwidth]{example-image-duck}
    \caption{Subcaption C}
\end{subfigure}
    \caption{Caption}
\end{figure}
\lipsum[3-4]
\end{document}

在此处输入图片描述

答案2

这个subfigure包已经过时几十年了。

后续产品包subfig achemso可以毫无问题地使用。

\documentclass[
  journal=jacsat,
  manuscript=article
]{achemso}

\usepackage{chemformula} % Formula subscripts using \ch{}
\usepackage[T1]{fontenc} % Use modern font encodings
\usepackage{graphicx}
\usepackage{subfig}

\author{Andrew N. Other}
\altaffiliation{A shared footnote}
\author{Fred T. Secondauthor}
\altaffiliation{Current address: Some other place, Othert\"own,
Germany}
\author{I. Ken Groupleader}
\altaffiliation{A shared footnote}
\email{[email protected]}
\phone{+123 (0)123 4445556}
\fax{+123 (0)123 4445557}
\affiliation[Unknown University]
{Department of Chemistry, Unknown University, Unknown Town}
\alsoaffiliation[Second University]
{Department of Chemistry, Second University, Nearby Town}
\author{Susanne K. Laborator}
\email{[email protected]}
\affiliation[BigPharma]
{Lead Discovery, BigPharma, Big Town, USA}
\author{Kay T. Finally}
\affiliation[Unknown University]
{Department of Chemistry, Unknown University, Unknown Town}
\alsoaffiliation[Second University]
{Department of Chemistry, Second University, Nearby Town}

\title[An \textsf{achemso} demo]
  {A demonstration of the \textsf{achemso} \LaTeX\
   class\footnote{A footnote for the title}}

\abbreviations{IR,NMR,UV}
\keywords{American Chemical Society, \LaTeX}

\begin{document}

\begin{abstract}
  This is an example document for the \textsf{achemso} document
  class, intended for submissions to the American Chemical Society
  for publication. The class is based on the standard \LaTeXe\
  \textsf{report} file, and does not seek to reproduce the appearance
  of a published paper.

  This is an abstract for the \textsf{achemso} document class
  demonstration document.  An abstract is only allowed for certain
  manuscript types.  The selection of \texttt{journal} and
  \texttt{manuscript} will determine if an abstract is valid.  If
  not, the class will issue an appropriate error.
\end{abstract}

\section{Introduction}
This is a paragraph of text to fill the introduction of the
demonstration file.  The demonstration file attempts to show the
modifications of the standard \LaTeX\ macros that are implemented by
the \textsf{achemso} class.  These are mainly concerned with content,
as opposed to appearance.

\begin{figure}[htp]
\centering

\subfloat[Subcaption]{\includegraphics[width=0.4\columnwidth]{example-image}}\hfill
\subfloat[Subcaption]{\includegraphics[width=0.4\columnwidth]{example-image}}

\caption{Caption}

\end{figure}

\end{document}

在此处输入图片描述

您也可以改用subcaption

相关内容