그래픽이 나타나지 않습니다

그래픽이 나타나지 않습니다

문제는 다음과 같습니다. 그래픽(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).
  • graphicxdraft패키지가 또는 모드 에 있습니다 demo. 또는 주요 \documentclass용도 draft옵션(이것은 모든 \usepackages에 전달됩니다)
  • 그래픽 파일을 찾을 수 없지만 사용자가 batchmode. 가능한 확인: 파일에서 오류를 찾습니다 .log.

관련 정보