无法让两个数字并排工作

无法让两个数字并排工作

我尝试了很多方法来让两个数字并排编译。大多数方法最终都给出了这个错误

Emergency stop subcaption.sty 66

显示文件中的这一行subcaption.sty

\subcaption@CheckCompatibility

我已经尝试了这些链接中提供的大多数方法:

两个并排的身影

LaTeX 图形并排显示

将两个数字并列

LaTeX 中的并排图像

我曾尝试改变\usepackage{subfigure}\usepackage{subfig}我曾尝试改变子图前面提供的选项。

现在这两个图的代码如下:

\begin{figure}[ht]
    \centering
    \parabox{4cm}{
    \includegraphics[width=4cm]{{ example−image−a}}
    \caption{Fyrir}
    \qquad
    \begin{minipage}{4cm}
      \includegraphics[width=4cm]{ example−image−b}
      \caption{Eftir}
    \end{minipage}
    \caption{Mismunur í afhendingagetu milli 2019 og 2023 \label{fig:afhendingageta}}
     \end{figure}

所有套餐(当前):

\usepackage[utf8]{inputenc}
\usepackage[icelandic]{babel}
\usepackage{t1enc}
\usepackage{graphicx,booktabs}
\usepackage[intoc]{nomencl}
\usepackage{enumerate,color}
\usepackage{url}
\usepackage[pdfborder={0 0 0}]{hyperref}
\BeforeTOCHead[toc]{\cleardoublepage\pdfbookmark{\contentsname}{toc}} % Add Table of Contents to PDF "bookmark" table of contents
\usepackage{appendix}
\usepackage{eso-pic}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{longtable}
\usepackage[sf,normalsize]{subfigure}
\usepackage[format=plain,labelformat=simple,labelsep=colon]{caption}
\usepackage{placeins}
\usepackage{tabularx}
\usepackage{multirow}
\usepackage{adjustbox}
\usepackage{subcaption}
\usepackage{subfig}
\usepackage{pgfplots}
\pgfplotsset{compat=newest}
\usepgfplotslibrary{external}
% Packages used for title page layout
\usepackage[dvipsnames]{xcolor}
\usepackage{tikz}
\usetikzlibrary{positioning}

我的 LaTeX 文档非常庞大,因此如果您想要一份最小的工作文档,我会将其粘贴到 pastebin(或类似工具)中并在此处分享链接。如果我的代码中有拼写错误,我看不到它。

我非常确定我的所有系统都是最新的(在滚动发布的 Linux 上)。

答案1

仅供参考,这是编译

\documentclass[a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[icelandic]{babel}
% \usepackage{t1enc}
\usepackage[T1]{fontenc}
\usepackage[dvipsnames]{xcolor}
\usepackage{graphicx,booktabs}
\usepackage[intoc]{nomencl}
\usepackage{enumerate,color}
\usepackage{url}
\usepackage{appendix}
\usepackage{eso-pic}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{longtable}
%\usepackage[sf,normalsize]{subfigure}
\usepackage[format=plain,labelformat=simple,labelsep=colon]{caption}
\usepackage{placeins}
\usepackage{tabularx}
\usepackage{multirow}
\usepackage{adjustbox}
\usepackage{subcaption}
%\usepackage{subfig}
\usepackage{pgfplots}
\pgfplotsset{compat=newest}
\usepgfplotslibrary{external}
% Packages used for title page layout
\usepackage{tikz}
\usetikzlibrary{positioning}

\usepackage[pdfborder={0 0 0}]{hyperref}
\BeforeTOCHead[toc]{\cleardoublepage\pdfbookmark{\contentsname}{toc}} % Add Table of Contents to PDF "bookmark" table of contents


\begin{document}

\begin{figure}[ht]
    \centering
    \parbox{4cm}{
    \includegraphics[width=4cm]{example-image-a}}
    \caption{Fyrir}
    \qquad
    \begin{minipage}{4cm}
      \includegraphics[width=4cm]{example-image-b}
      \caption{Eftir}
    \end{minipage}
    \caption{Mismunur í afhendingagetu milli 2019 og 2023 \label{fig:afhendingageta}}
  \end{figure}

\end{document}

评论

  • 使用\usepackage[T1]{fontenc}而不是t1enc
  • 使用enumitemenumerate
  • 使用xcolorcolor
  • 我可能会用subcaption其他的
  • hyperref最后加载
  • 提供的代码中存在多处拼写错误。
  • 仅加载您真正需要的包。
  • 建议在每个包上方写一个小注释,解释为什么使用它。这样,如果将文档提供给其他人作为模板使用,他们可以决定是否需要它。

相关内容