图片和说明

图片和说明

在 Overleaf 中:我在 latex 文档中插入图形后,还插入了标题,但标题未显示在 PDF 版本中。这是我输入的代码;我是否遗漏了某些内容导致标题无法显示?

\begin{figure}
\centering
Zippia: The Career Expert
\includegraphics{Mathematica. HW 1.jpg}
\caption{Computer Programmers in the United States}
\end{figure}
\end{document}

答案1

这是您想要执行的操作的最简单的方法:

\documentclass{article}
\usepackage{graphicx}

\begin{document}

\begin{figure}
\centering
Zippia: The Career Expert
\includegraphics{example-image-a}
\caption{Computer Programmers in the United States}
\end{figure}

\end{document}

结果如下。

如果您的标题没有显示,可能是因为您使用的另一个包与其余代码存在冲突,或者因为您无意中更改了标题的设置。尝试使用您的图重现上面的代码片段。

在此处输入图片描述

相关内容