带有数组的子浮点数?

带有数组的子浮点数?

以下代码会产生错误:

缺少插入的 $。1.109 \end{array}

对于我遗漏的内容有什么建议吗:

\begin{figure}[H]
\caption{My caption goes in here.}
\centering
\subfloat[Subfloat 01]
{\includegraphics[width=0.30\textwidth]{../PNG/Figure_1.png}}
\subfloat[Subfloat 02]
{\[ \begin{array}{ccc}
$text$ & $text$ & $text$\\
$text$ & $text$ & $text$
\end{array}\]}
\end{figure}

答案1

在这种情况下,不要直接使用显示样式数学。而是使用$\begin{array}...\end{array}$。这是一个完整的最小示例:

\documentclass{article}
\usepackage{subfig}% http://ctan.org/pkg/subfig
\usepackage{float}% http://ctan.org/pkg/float
\usepackage[demo]{graphicx}% http://ctan.org/pkg/graphicx
\begin{document}

\begin{figure}[H]
\caption{My caption goes in here.}
\centering
\subfloat[Subfloat 01]
{\includegraphics[width=0.30\textwidth]{../PNG/Figure_1.png}}
\subfloat[Subfloat 02]
{$\begin{array}{ccc}
text & text & text\\
text & text & text
\end{array}$}
\end{figure}

\end{document}

为了使用显示样式数学 - 这在您的示例中似乎没有必要 - 您需要以的形式为浮点数提供一些固定的宽度minipage

选择demographicx只是为了使这个例子编译,因为图像Figure_1.png不可用。

相关内容