在 TexShop 中包含 PNG 图像

在 TexShop 中包含 PNG 图像

我想知道这段代码中可能缺少什么。我已将所有 LaTeX 文件存储在与我想要导入的 png 图像相同的文件夹中。该图像名为“签名”,并以此形式保存。

\documentclass[11pt]{article}
\setlength\parindent{0pt}
\usepackage[pdftex]{graphicx} 
\begin{document}
\title{Physics Honors Problem Set 1}
\author{Justinian Vladutiu}
\date{September, 2014}
\maketitle

\includegraphics{Signature.png}

\end{document}

答案1

就我而言,这样的代码有效:

\begin{figure}

\centering
  \includegraphics[width=\linewidth]{name.png}
 \caption{what's that}
\label{label}

\end{figure}

相关内容