哪个包正在使用 \includegraphics?

哪个包正在使用 \includegraphics?

正在使用哪个包\includegraphics

我的安装包有问题,我需要知道哪个包正在使用\includegraphics

问题是图片看起来像一个点。如果我们将图片放大(6400%),可以在顶部看到一些 TeX 图像。

\documentclass[12pt]{article}
\usepackage{graphicx}
\usepackage{placeins}
\usepackage{float}
\usepackage{subfigure}
\begin{document}

\begin{figure*}[htp]
  \centering
  \subfigure[random caption 1]{\includegraphics[scale=0.38]{pic1.jpg}}\quad
  \subfigure[random caption 2]{\includegraphics[scale=0.38]{pic2.jpg}}
\end{figure*}

Text
\begin{figure}[h!]
    \centering
    \includegraphics[width=10\textwidth]{pic1.jpg}
    \caption{IDEF0sss}
\end{figure}

\begin{figure}[h!]
\includegraphics[width=30mm, height=20mm]{pic1.jpg}
\end{figure}

\end{document}

答案1

这两个软件包graphicsgraphicx都允许您使用\includegraphics

相关内容