전단. 컴파일된 PDF에 이미지가 표시되지 않는 이유는 무엇입니까?

전단. 컴파일된 PDF에 이미지가 표시되지 않는 이유는 무엇입니까?

나는 책을 읽고 있어요 라텍스 요리책Steffan Kottwitz의 글이지만 이 예제를 사용하면 컴파일된 코드 예제에서 이미지를 얻을 수 없습니다.

여기에 이미지 설명을 입력하세요

\documentclass[10pt,notumble,nofoldmark,demo]{leaflet}% demo option for dummy image
\usepackage[T1]{fontenc}
%\usepackage{libertine}
%\renewcommand{\familydefault}{\sfdefault}
\usepackage{graphicx,subcaption}
\usepackage{microtype}
\pagenumbering{gobble}
\CutLine{3}
\usepackage{xcolor}
\usepackage{mwe}
\usepackage{mathpazo}
\renewcommand{\sectfont}{\large\sffamily\bfseries\color{blue}}
\begin{document}
\title{\textbf{\TeX\ Live Install Party}}
\author{\Large\textbf{Your \TeX\ team}}
\date{\textbf{August 11, City Hall Cellar}}
\maketitle
\begin{figure}[h!]
  \centering
  \includegraphics[width=0.88\linewidth]{example-image-a.jpg}
  %\caption{}\label{}
\end{figure}
We'd like to welcome you to our famous yearly \TeX\ install party!
Bring your laptop and have free cold soft drinks while we assist you in
installing the latest \TeX\ version on your computer.

We will provide
\begin{itemize}
\item a fast internet connection fow downloading,
\item media such as DVDs and USB sticks with the latest \TeX\,
\item \TeX\ books for bying with a discount,
\item chat with \TeX\ experts.
\end{itemize}
\clearpage
Fill in text for page 2 (on the back side)
\clearpage
Fill in text for page 3 (on the back side)
\clearpage
Fill in text for page 4 (on the back side)
\clearpage
\section{Schedule}
\begin{tabular}{@{}rl@{}}
6 pm    & Welcome \\
7:30 pm & Live install presentation \\
8 pm    & Book authors available for talks and signing \\
9:30 pm & Bar closing
\end{tabular}

From 6pm to 10pm: install support
and free \TeX\ copies on DVD on our welcome desk.
\section{Accomodation}
Hotel, Meals, Travel information here
\section{Sponsors}
Information about our local \TeX\ user group
and Open Source projects sponsor
\clearpage
\section{Contact}
Names, Phone numbers, email addresses
\end{document}

답변1

demo옵션 목록에서 간단히 제거하십시오 .

\documentclass[10pt,notumble,nofoldmark]{leaflet}% demo removed
...

그러면 당신은 얻을 것이다

여기에 이미지 설명을 입력하세요

관련 정보