我不知道为什么,但我无法将图像放入我的 Latex 文件中。我使用的是 MacTex 并以 .tex 扩展名保存代码。我还将图像放在我保存文件/代码的同一位置。有人能帮帮我吗?这是我的代码:
\documentclass{article}
\usepackage{amsmath}
\usepackage{graphicx}
\begin{document}
\section{STUFF}
\subsection{FiguresTest}
\begin{figure}
\includegraphics{width=\linewidth}{iplace.jpg}
\caption{A place.}
\label{fig:place1}
\end{figure}
The figure\ref{fig:place1} shows a place.
\end{document}
答案1
您正在尝试添加一个图片
\includegraphics{width=\linewidth}
名字叫width=\linewidth
你必须日志中存在与该内容相关的错误。
选项放在方括号中
\includegraphics[width=\linewidth]{iplace.jpg}