定位子浮点数(subfig 包)的不同类型

定位子浮点数(subfig 包)的不同类型

我想制作一个表格,其中一个表格顶部与两个 tikz 图形左对齐。这个问题似乎与 floatrow 包有关,因为没有结果,仍然不太好,但更好。

这是我最小的示例。我只包括演示图片,因为其行为与 tikz 图片相同:

\documentclass{article}
\usepackage[demo]{graphicx}
\usepackage{floatrow}
\floatsetup[table]{capposition=top,footnoterule=none,footskip=.35\skip\footins}
\usepackage{subfig}

\begin{document}

\begin{table}
\centering
\subfloat[t][]{
\begin{tabular}{cc}
Test&Test\\
Test&Test\\
Test&Test\\
Test&Test\\
Test&Test\\
Test&Test\\
Test&Test\\
Test&Test\\
Test&Test\\
Test&Test\\
Test&Test\\
Test&Test
\end{tabular}
}
\begin{tabular}{c}
\subfloat[t][]{
\includegraphics[width=.5\textwidth]{}
}\\
\subfloat[t][]{
\includegraphics[width=.5\textwidth]{}
}
\end{tabular}
\caption{Test}
\end{table}

\end{document}

有人知道如何在保持相同设置的情况下使标题(a)与标题(b)对齐吗?

先谢谢您的帮助!

编辑:

我刚刚意识到我的系统上的实际结果会有所帮助: 我的代码的实际结果。

答案1

像这样吗?

在此处输入图片描述

这张照片是由以下人员制作的:

\documentclass{article}
\usepackage[demo]{graphicx}
\usepackage{floatrow}
\floatsetup[table]{capposition=top,footnoterule=none,footskip=.35\skip\footins}
\usepackage{subfig}

    \begin{document}
\begin{table}
\centering
    \begin{tabular}{cc}
\subfloat[]{
\begin{tabular}[t]{cc}
Test&Test\\
Test&Test\\
Test&Test\\
Test&Test\\
Test&Test\\
Test&Test\\
Test&Test\\
Test&Test\\
Test&Test\\
Test&Test\\
Test&Test\\
Test&Test
\end{tabular}
}   &
\begin{tabular}[t]{c}
\subfloat[]{
\includegraphics[width=.5\textwidth]{}
}\\
\subfloat[]{
\includegraphics[width=.5\textwidth]{}
}
\end{tabular}
    \end{tabular}
\caption{Test}
\end{table}
    \end{document}

相关内容