扫描的图像未显示在 PDF 中

扫描的图像未显示在 PDF 中

这是我的文件:

\documentclass[12pt,a4paper,onecolumn]{report}

\usepackage{pdfpages}%for inserting pdf thesis declarations
\usepackage{graphicx}%for inserting pdf thesis declarations

\begin{document}
%--------------------------------------------------------------Preamble 1--------------------------------------------------------------%
\newpage
\clearpage
%\pagestyle{plain}


%%%%%%%%%%\textbf{\large Statement of Originality}
\includepdf[pages={1}, pagecommand={\thispagestyle{plain}}]{myscan1.pdf}

%--------------------------------------------------------------Preamble 2 Statement--------------------------------------------------------------%
\newpage
\clearpage
%\pagestyle{plain}
\begin{figure}
  \includegraphics[width=\linewidth]{myscanimage.jpg}
  \caption{A boat.}
  \label{fig:boat1}
\end{figure}

\end{document}

扫描图像

答案1

我将此作为答案发布,仅仅是因为评论线程已经足够长并且在格式方面没有提供足够的选项。

我在 TexLive 2022 上使用过此代码:

\documentclass[12pt]{report}

\usepackage{graphicx}

\begin{document}
\includegraphics[height=\textheight]{SozLJ}
\end{document}

使用您的图片(https://i.stack.imgur.com/SozLJ.jpg) 并且编译成功。这个文件似乎没有什么特别之处。

请自行尝试,如果不行的话,请检查日志文件。

相关内容