我知道已经有很多关于这个的帖子了(比如这个乳胶上的图像不显示或者这个https://stackoverflow.com/questions/3134187/how-to-add-a-jpg-image-in-latex),但我的问题似乎去别的地方躺下。
但问题基本上是一样的:为什么我尝试包含在 LaTex 文档中的图像没有显示?我得到的是一个 pdf 文件,其中有一个居中的框,大小与图像大小(正确)相符:
这是我的代码:
\title{}
\author{}
\date{}
\documentclass[a4paper,notitlepage,draft]{report}
\usepackage[pdftex]{graphicx}
\begin{document}
\maketitle
\begin{figure}[h]
\centering
\includegraphics{small.jpg}
\caption{MyCaption}
\label{fig:MyLabel}
\end{figure}
\end{document}
我在 Gentoo Linux 下使用 pdflatex:
% pdflatex --version
pdfTeX 3.14159265-2.6-1.40.21 (TeX Live 2020 Gentoo Linux)
kpathsea version 6.3.2
Copyright 2020 Han The Thanh (pdfTeX) et al.
There is NO warranty. Redistribution of this software is
covered by the terms of both the pdfTeX copyright and
the Lesser GNU General Public License.
For more information about these matters, see the file
named COPYING and the pdfTeX source.
Primary author of pdfTeX: Han The Thanh (pdfTeX) et al.
Compiled with libpng 1.6.37+apng; using libpng 1.6.37+apng
Compiled with zlib 1.2.11; using zlib 1.2.11
Compiled with poppler version 0.88.0
通常,我希望有一种好的方法将任何大小的 jpg 或 png 图像包含在 pdf 文档中。由于我的图像有点大(750x811px),我将其缩小到(150x162px),只是为了排除与 LaTex 缩放相关的问题。将其转换为 png 也不起作用。
使用“convert small.jpg eps2:small.eps”将图像转换为 eps 并使用 latex->dvipdfm 对其进行编译也无济于事;使用或不使用 pdftex 的 graphicx 包也无济于事。
我甚至没有收到错误消息。以下是日志:https://pastebin.com/jGnwbYd5
这个平台上有人能给出建议吗,问题出在哪里?