图片未以PDF格式显示在Latex论文中(通过Overleaf)

时间:2019-08-13 14:04:11

标签: image latex

我的论文的图片文件夹中有图片。当在我的ChapterX.tex文件中使用\ includegraphics [] {}命令时,图像将不会显示(在正常模式,快速模式或下载的PDF中)。它们似乎可以缩放,但不会显示。

我尝试使用graphicsx和graphics软件包,但均无效。

\documentclass[
10pt, 
english, 
singlespacing, 
draft,
parindent 20mm
headsepline, 
chapterinoneline, 
]{MastersDoctoralThesis} 

\usepackage[utf8]{inputenc} 

\usepackage{ctable}

\usepackage[T1]{fontenc}

\usepackage{minitoc}
\setcounter{minitocdepth}{2} 
\setlength{\mtcindent}{24pt} 

\usepackage{hyperref}

\hypersetup{
    colorlinks=true,
    linkcolor=blue,
    filecolor=magenta,      
    urlcolor=cyan,
    }

\usepackage{enumitem} 
\setlist[itemize]{noitemsep}
\setlist[enumerate]{noitemsep}

\usepackage{graphicx} % Required for including images
\graphicspath{{figures/}} % Location of the graphics files




\geometry{
    paper=a4paper, % Change to letterpaper for US letter
    inner=3cm, % Inner margin
    outer=3cm, % Outer margin
    %bindingoffset=.5cm, % Binding offset
    top=1.5cm, % Top margin
    bottom=1.5cm, % Bottom margin
    %showframe, % Uncomment to show how the type block is set on the page
}


\begin{document}

\chapter{Conceptual framework}

\label{Chapter3} 

\minitoc

\section{Introduction}

Below is Jackendoff's parallel architecture.

\includegraphics{figures/jackendoffpa.jpeg}

1 个答案:

答案 0 :(得分:1)

您需要删除draft选项才能查看图像:

\documentclass[
10pt, 
english, 
singlespacing, 
%draft,
parindent 20mm
headsepline, 
chapterinoneline, 
]{MastersDoctoralThesis} 

\usepackage[utf8]{inputenc} 

\usepackage{ctable}

\usepackage[T1]{fontenc}

\usepackage{minitoc}
\setcounter{minitocdepth}{2} 
\setlength{\mtcindent}{24pt} 

\usepackage{hyperref}

\hypersetup{
    colorlinks=true,
    linkcolor=blue,
    filecolor=magenta,      
    urlcolor=cyan,
    }

\usepackage{enumitem} 
\setlist[itemize]{noitemsep}
\setlist[enumerate]{noitemsep}

\usepackage{graphicx} % Required for including images
\graphicspath{{figures/}} % Location of the graphics files




\geometry{
    paper=a4paper, % Change to letterpaper for US letter
    inner=3cm, % Inner margin
    outer=3cm, % Outer margin
    %bindingoffset=.5cm, % Binding offset
    top=1.5cm, % Top margin
    bottom=1.5cm, % Bottom margin
    %showframe, % Uncomment to show how the type block is set on the page
}


\begin{document}

\chapter{Conceptual framework}

\label{Chapter3} 

\minitoc

\section{Introduction}

Below is Jackendoff's parallel architecture.

\includegraphics{jackendoffpa}

\end{document}

enter image description here