PNG 文件作为图形生成字符错误

PNG 文件作为图形生成字符错误

在 Overleaf 文章中我导入了一个PNG 文件使用 GIMP 生成如下:

  \begin{figure}[ht]
    \centering
        \input{global_time_space_v02.png}    
    \caption{\label{fig:global_time_space}Global time-space representation}
\end{figure}

我收到一个错误:

./global_time_space_v02.png:2: Text line contains an invalid character. l.2 ^^Z

如果我转换为 JPG 或 TIFF,则不同的字符会出现相同的错误:

./Figures/global_time_space_v02.jpg:1: Package inputenc Error: Keyboard charact er used is undefined (inputenc) in inputencoding `utf8'. See the inputenc package documentation for explanation. Type H <return> for immediate help. ... l.1 � ���^^@^^PJFIF^^@^^A^^A^^@^^@^^A^^@^^A^^@^^@��^^@C^^@^^H^^F^^F^^G^^F^^E^...

我在用\usepackage[utf8]{inputenc}

答案1

作为乌尔丽克·菲舍尔提出,它需要\includegraphics{global_time_space_v02}和不需要\input{global_time_space_v02.png}(当然还有 graphicx 包)。

相关内容