图形未出现

图形未出现

问题如下:我已添加图形(png)且未收到任何错误消息,但图片未出现在 pdf 上?.png 文件是正确的,我不知道可能出了什么问题?

这是我的代码:

\documentclass{book}

\usepackage[ngerman]{babel}
\usepackage{mathptmx}
\usepackage{color}
\usepackage[final]{pdfpages} 
\usepackage{xcolor,bookmark}
\usepackage{scrextend}
\usepackage{titlepic}
\usepackage{shorttoc}
\usepackage{courier}
\usepackage{type1cm}         
\usepackage{zref-abspage}
\usepackage{makeidx}         

\usepackage{graphicx}        % standard LaTeX graphics tool
                             % when including figure files
\usepackage{multicol}        % used for the two-column index
\usepackage[bottom]{footmisc}% places footnotes at page bottom
\usepackage{shadethm}
\usepackage{amsthm}
\usepackage{amsmath}
\usepackage{xcolor}
\usepackage{marginnote}
\usepackage{mdframed}
\makeindex             % used for the subject index
                       % please use the style svind.ist with
                       % your makeindex program

\definecolor{shadethmcolor}{rgb}{.9,.9,.95}%
\definecolor{shadethmcolor2}{rgb}{1,.925,.545}%

\newtheoremstyle{mystyle}
  {\topsep}{\topsep}{}{}%
  {\bfseries}{:}{.5em}{}%

\theoremstyle{mystyle}

\newmdtheoremenv[hidealllines=true,backgroundcolor=shadethmcolor,skipabove=\topsep,
skipbelow=\topsep]{beispiel}{Beispiel}

\newmdtheoremenv[hidealllines=true,
backgroundcolor=shadethmcolor2,skipabove=\topsep,
skipbelow=\topsep]{formel}{Formel}


\begin{document}
\begin{figure}[H]
\includegraphics[scale=1]{Zinsrechnung.png}
\caption{geometrisches Mittel}\label{fig:zins}
\end{figure}
\end{document}

答案1

图形未显示

图形无法出现的原因可能是什么?

对于阅读此问题大标题的所有读者来说,收集所有导致不可见图形的常见原因可能很有用。所以请继续添加您的经验。

  • 图形可能超出页面范围;可能的检查:将图形放大再看一遍(\includegraphics[scaled=0.1]{picture}),将图形放到纸张中间(\vfill\includegraphics{picture}\vfill),然后放大纸张(例如纸张 a2)。
  • graphicx包在draftdemo模式中。或主要\documentclass用途draft选项(这将传递给所有\usepackages)
  • 无法找到图形文件,但看不到错误,因为用户正在使用某种使用 的脚本batchmode。可能的检查:查找.log文件中的错误。

相关内容