我是 Latex 的新手。这是我的第一篇论文,我正在尝试插入带标题的图像。我查找了其他类似的问题/答案,但无济于事。这是我的不显示图像的代码:
% This stuff is up top
\usepackage{graphicx}
\graphicspath{ {images/} }
...
\begin{figure}
\caption{Histogram of errors of $k_{cvx}$ and $k_{ccv}$ - mean errors 3.8cm and 3.88cm respectively, $\phi = 0.05$ rad (2.9 degrees) with a max error of 11cm}
\centering
\includegraphics[width=0.25\textwidth]{errors_kcvx_005rad_038cm}
\includegraphics[width=0.25\textwidth]{errors_kccv_005rad_0388cm}
\label{fig:plot1}
\end{figure}
什么都没有出现。但是,如果我注释掉所有图形内容,我就会看到我想要组成图形的两幅图像:
%\begin{figure}
% \caption{Histogram of errors of $k_{cvx}$ and $k_{ccv}$ - mean errors 3.8cm and 3.88cm respectively, $\phi = 0.05$ rad (2.9 degrees) with a max error of 11cm}
% \centering
\includegraphics[width=0.25\textwidth]{errors_kcvx_005rad_038cm}
\includegraphics[width=0.25\textwidth]{errors_kccv_005rad_0388cm}
% \label{fig:plot1}
%\end{figure}
我如何使用图形功能并添加标题?谢谢。