在子浮点数中移动图形(subfig 包)

在子浮点数中移动图形(subfig 包)

我想对齐图片中的图形,我尝试了在互联网上找到的许多解决方案,但对我都不起作用。我正在使用 subfig 包。我已经覆盖了这些图形,因为我不拥有这些图形的版权。第一个是用 Gnuplot(epslatex 终端)生成的,第二个是一个简单的 pdf 图像。这是我的代码:

\begin{figure}[t]
\centering
\begin{adjustbox}{max width=\textwidth}
\subfloat[Caratterizzazione IV @ $T = -30^\circ C$ \label{subfig-1:3d-iv_frigo}]{%
   \input{./cap4/3d/iv_frigo}
}
\subfloat[Misura a 50V @ $T = -30^\circ C$ \label{subfig-2:strip_cv}]{%
    \includegraphics[scale=0.65]{./3d/misure/50V_frigo}
  \put(-40,-7){\footnotesize elettroni}
}
\end{adjustbox}
\caption{Frigo}
\label{fig:frigo}
\end{figure}

子图

答案1

您可以使用以下subfloatrow环境floatrow

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{calc}
\usepackage{caption, subcaption}
\usepackage{floatrow}
\usepackage{graphicx}%[demo]
\usepackage[showframe]{geometry}

\begin{document}

\begin{figure}
\floatsetup{capposition=below, floatrowsep=qquad}
\centering
\ffigbox{%
\begin{subfloatrow}
\centering
    \ffigbox[0.40\textwidth]{\caption{\emph{Traccia Table} (1939)}}{%
  \includegraphics[width=0.35\textwidth]{traccia-table}%[width=0.4\textwidth]
  }
    \ffigbox[0.50\textwidth]{\caption{\emph{Le Cahier d’une Écolière} (1931)}}{%
  \includegraphics[width=0.45\textwidth]{cahier}%
  }
\end{subfloatrow}}%
{\caption{Méret Oppenheim (1913-1985)} \label{MO}}
\end{figure}

\end{document} 

在此处输入图片描述

答案2

这个解决方案对我有用。使用包subcaption

\begin{figure}[ht]
    \centering
    \begin{subfigure}[t]{0.49\textwidth}
        \includegraphics[width=1\linewidth]{example-image-a.pdf}
        \caption{Caption for figure 1}
    \end{subfigure}
    \begin{subfigure}[t]{0.49\textwidth}
        \includegraphics[width=1\linewidth]{example-image-a.pdf}
        \caption{Caption for figure 2}
    \end{subfigure}
    \vspace{6pt}
    \caption{Caption for the two figures}
\end{figure}

在此处输入图片描述

相关内容