我需要将一些 1,024x768 像素大小的 SEM 图像放入我正在撰写的多色文章中,但我收到了尺寸过大的错误

我需要将一些 1,024x768 像素大小的 SEM 图像放入我正在撰写的多色文章中,但我收到了尺寸过大的错误

我已经尝试使用 width = \textwidth 和 width = \linewidth,也尝试缩放图像,但它会出现在整个文本上。

\documentclass[a4paper,12pt]{article}
\usepackage[spanish]{babel}
% Package to make citations superscrit with brackets
\usepackage[super,square]{natbib}
% Package to change margin size
\usepackage{anysize}
\marginsize{2cm}{2cm}{1cm}{2cm}
% Package to make headers
\usepackage{fancyhdr}
\renewcommand{\headrulewidth}{0pt}
% Package for highligths
\usepackage{soul}
% Colors for the references links
\usepackage[dvipsnames]{xcolor}
% Package to link references
\usepackage{hyperref}
\usepackage{float}
\usepackage{graphicx}
\hypersetup{
    colorlinks=true,
    linkcolor=black,
    citecolor=CadetBlue,
    filecolor=CadetBlue,      
    urlcolor=CadetBlue,
}
% Package for lorem ipsum
\usepackage{lipsum}
% Package for multicolumn
\usepackage{multicol}
\setlength\columnsep{18pt}
% Sets bastract
\renewenvironment{abstract}
 {\par\noindent\textbf{\abstractname}\ \ignorespaces \\}
 {\par\noindent\medskip}

\begin{document}

\begin{figure}[H]
    \centering
    \includegraphics[width = \textwidth]{images/SEM_01.png}
    \caption{}
    \label{fig:SEM01}
\end{figure}

\end{document}

在此处输入图片描述

答案1

无论出于什么原因,您生成的“PNG”图像都以 1 PPI 的密度存储:这意味着 LaTeX 认为它的宽度为 1024 英寸,大约是 26 米,这超过了 LaTeX 可以管理的约 5 米。

我刚刚在 GIMP 中打开了图像,将分辨率更改为 300 ppi,它就可以正常工作了(下面的编辑图像)。

将图像从 TIFF 转换为 PNG 时,您可能错过了“分辨率”或“密度”标志。

在此处输入图片描述

相关内容