缺少 $ 插入。...3mm]{\includegraphics[width=4.002cm]{6a}}

缺少 $ 插入。...3mm]{\includegraphics[width=4.002cm]{6a}}

我无法消除这个错误:

缺少插入$。...

我已经使用过:

\usepackage{subfig}
\usepackage{graphicx}
\graphicspath{ {D:/Users/test/} }

我的代码是:

\begin{figure}[t]
    \centering
    \subfloat[\kappa_1=0.01mm]{\includegraphics[width=4cm]{6a}} 
    \hfill
    \subfloat[\kappa_2=0.02mm]{\includegraphics[width=3.9cm]{6b}} \\
    \caption{Test}\label{foo}
\end{figure}

答案1

您需要使用$\kappa_1$$\kappa_2$摆脱该错误消息。

请参阅以下内容:

\documentclass{article}

\usepackage{subfig}
\usepackage{graphicx}

\begin{document}
\begin{figure}[t]
    \centering
    \subfloat[$\kappa_1$=0.01mm]{\includegraphics[width=4cm]{example-image-a}} 
    \hfill
    \subfloat[$\kappa_2$=0.02mm]{\includegraphics[width=3.9cm]{example-image-b}} \\
    \caption{Test}\label{foo}
\end{figure}
\end{document}

及其结果:

在此处输入图片描述

相关内容