我得到了这个模板,它给出了如下错误:
LaTeX Error: File `' not found.
main.tex, 74
The compiler cannot find the file you want to include. Make sure that you have uploaded the file and specified the file location correctly.
对于每个\chapter
和我的目录\tableofcontents
。我认为模板想要在每一章插入一张图片,但是我不想在这里插入任何图片。我想我找到了实现此功能的部分,但由于我对 LaTeX 还不太熟悉,我不知道如何删除图像插入或如何避免错误。
如何在不使用图片的情况下消除错误?
链接到structure.tex:https://github.com/PIX3LFLUX/HSK-Latex-Skript-Template/blob/main/structure.tex
答案1
模板提到了一个名为的开关usechapterimage
,可以将其设置为 true 或 false。如果将其设置为 true,则还必须使用命令\chapterimage
提供章节图像的文件名。如果开关为 true,但未提供文件名,则会出现问题中提到的错误。
以下代码(复制自00_main.tex
)关闭章节图像并注释文件名设置:
\usechapterimagefalse % If you don't want to include a chapter image, use this to toggle images off - it can be enabled later with \usechapterimagetrue
%\chapterimage{Pictures/csm_HKA_FK-EIT_2017-9363_a9e6e1d039.jpg} % Table of contents heading image
\pagestyle{empty} % Disable headers and footers for the following pages
\tableofcontents % Print the table of contents itself
\cleardoublepage % Forces the first chapter to start on an odd page so it's on the right side of the book
\pagestyle{fancy} % Enable headers and footers again
%----------------------------------------------------------------------------------------
% Teil 1
\part{TEIL 1}
%----------------------------------------------------------------------------------------
\input{01_einleitung.tex}
结果:
请注意,您在问题中没有提供您自己的文档的代码,因此很难说您应该将相关代码放在哪里(即第一行,由 组成\usechapterimagefalse
)。但是,它应该在您第一次使用之前\chapter
但在加载之后的某个地方structure.tex
(因为那里开关处于 true 状态)。