首页 > 解决方案 > Latex :图像未出现在 chapter1.tex 中,但在 main.tex 中有效

问题描述

我可以看到这是一个常见的问题。但是,我没有找到解决我的问题的方法。我用 LaTex 写我的硕士论文,当我编译时,图像没有出现在 pdf 文档中。它确实出现在main.tex但不在其他章节中,例如chapter1.tex

这是我的文档类和包;

\documentclass[
11pt, % The default document font size, options: 10pt, 11pt, 12pt
oneside, % Two side (alternating margins) for binding by default, uncomment to switch to one side
english, % ngerman for German
singlespacing, % Single line spacing, alternatives: onehalfspacing or doublespacing
%draft, % Uncomment to enable draft mode (no pictures, no links, overfull hboxes indicated)
%nolistspacing, % If the document is onehalfspacing or doublespacing, uncomment this to set spacing in lists to single
%liststotoc, % Uncomment to add the list of figures/tables/etc to the table of contents
%toctotoc, % Uncomment to add the main table of contents to the table of contents
%parskip, % Uncomment to add space between paragraphs
%nohyperref, % Uncomment to not load the hyperref package
headsepline, % Uncomment to get a line under the header
%chapterinoneline, % Uncomment to place the chapter title next to the number on one line
%consistentlayout, % Uncomment to change the layout of the declaration, abstract and acknowledgements pages to match the default layout
]{MastersDoctoralThesis} % The class file specifying the document structure

\usepackage[utf8]{inputenc} % Required for inputting international characters
\usepackage[T1]{fontenc} % Output font encoding for international characters
\usepackage{xcolor}
\usepackage{blindtext}
\usepackage{enumitem}
\renewcommand\thefootnote{\textcolor{blue}{\arabic{footnote}}}
\usepackage{mathpazo} % Use the Palatino font by default

%\usepackage[backend=bibtex,style=authoryear,natbib=true]{biblatex} % Use the bibtex backend with the authoryear citation style (which resembles APA)
%\usepackage[style=numeric,sorting=none]{biblatex}

%\addbibresource{example.bib} % The filename of the bibliography

\usepackage[autostyle=true]{csquotes} % Required to generate language-dependent quotes in the bibliography

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

这就是我为显示图像所做的;

\begin{figure}[h!]
    \centering
    \includegraphics[width=0.7\linewidth]{/Figures/Electron}
  \caption[Execution time]{Execution time} 
    \label{fig:Execution time}
\end{figure} 

如果我把上面的代码工作和图像出现在main.tex中,但是如果我尝试把图像放在其他章节(Chapter1.tex)中,它就无法显示。

标签: latexpdflatexlatex-environment

解决方案


推荐阅读