插入图片时出错

插入图片时出错

在应用此代码时,我插入的图像的输出是混合像素,就像模糊图像一样。请帮忙

在此处输入图片描述

\documentclass[a4,12pt]{book}
\usepackage[english]{babel}
\usepackage{blindtext}
\usepackage{graphicx}
\usepackage[a4paper, inner=1.5cm, outer=3cm, top=2cm,
bottom=3cm, bindingoffset=0.5cm]{geometry}
\title{VAC Assignment}
\author{Prashant Yadav (22/6204)}
\date{\today}
\begin{document}
\frontmatter
\include{Forward}
\include{Rationalisation of the contents in the textbooks}
\include{Textbook Development Committee}
\include{Acknowledgement}
\begin{figure}[ht]
\centering
    \includegraphics[scale=1]{preamble.jpg}
\end{figure}
\end{document}

答案1

您的图片可能尺寸太大。作为补救措施,请尝试对图片进行合理的“自动缩放”,例如使用\inludegraphics[width=\textwidth]{...}。然后您至少应该能够看到整个图片,并且可以检查图片本身是否出了问题。

相关内容