为什么我的图像没有显示在给定的乳胶脚本中?

为什么我的图像没有显示在给定的乳胶脚本中?

我使用了以下脚本,但其结果并未以图像形式显示 PDF 文件中的结果,我不明白为什么 -

\documentclass{article}
\usepackage{graphicx}
\begin{document}
\begin{figure}[!h]
\graphicspath{/home/aalpanigrahi/Desktop/LaTeX/fractions/abc.jpg}
\end{figure}
\end{document}

对于下图 - 图像

并产生以下结果 - 截屏

答案1

使用 \includegraphics 来包含图像。

\begin{figure}[!h]
\centering
\includegraphics[width=\textwidth]{/home/aalpanigrahi/Desktop/LaTeX/fractions/abc}
\end{figure}

相关内容