我正在学习如何在 Mac OS 上的 TeXStudio 中插入图像。我尝试将图像直接拖到 pdf 中,结果如下:
\documentclass[11pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{graphicx}
\author{Yifu Zhang}
\begin{document}
Here is a photo I wanna share
\begin{figure}
\centering
\includegraphics[width=0.7\linewidth]{Users/yifu.zhang/Desktop/Presentation12}
\caption{}
\label{fig:presentation12}
\end{figure}
\end{document}
但是,我收到错误消息,说文件未找到。我认为这是因为 .png 问题,所以我尝试了 .jpeg,并在最后添加了 .jpeg,如下所示:
\includegraphics[width=0.7\linewidth]{Users/yifu.zhang/Desktop/Presentation12.jpeg}
仍然不起作用。有人能帮我吗?谢谢!