未找到文件。类回忆录警告:您正在使用带有回忆录类的 caption 包

未找到文件。类回忆录警告:您正在使用带有回忆录类的 caption 包

当我尝试运行 PDFLaTex 时,我收到一条警告,它告诉我:“类 memoir 警告:您正在将 caption 包与 memoir 类一起使用。”但是,它并没有为我生成 pdf 文件。有什么提示吗?

% Document type
\documentclass[twoside,a4paper,12pt%,oldfontcommands
]{memoir}

\let\footruleskip\undefined %undefine footruleskip
\usepackage{fancyhdr}
\usepackage{setspace}
\usepackage{graphicx}
\newsubfloat{figure}% Allow subfloats in figure environment
\usepackage[utf8]{inputenc}
\usepackage{pslatex}
\usepackage{float}
\usepackage{subfig}
\usepackage{booktabs}
\usepackage{color}
\usepackage[english]{babel}
\usepackage[belowskip=0pt,aboveskip=0pt]{caption}
\usepackage{syntonly}
\syntaxonly
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{xcolor} % Some colors to distinguish environments in the compiled example
\usepackage{parselines}
\usepackage{titlesec}
%\usepackage{lipsum} % dummy text

%Inner and outter margins
\setlrmarginsandblock{3cm}{2.5cm}{*}
\setulmarginsandblock{2.5cm}{2.5cm}{*}
\checkandfixthelayout

%Citation
\epigraphfontsize{\small\itshape}
\setlength\epigraphwidth{8cm}
\setlength\epigraphrule{0pt}

\begin{document}

%Margins
%\lipsum[1-4] %Dummy text genrator for the first four paragraphs

\chapter{Graph Theory}

\epigraphfontsize{\small\itshape}
\epigraph{"Begin at the beginning," the King said gravely, "and go on till you come to the end: then stop."}{--- \textup{Lewis Carroll}, Alice in Wonderland}

\end{document}

答案1

要获取文档的输出,请\syntaxonly通过在其前面放置注释符号等来禁用。

您的帖子标题具有误导性,因为它与问题无关。

  • File not found:当我在您的文档上运行 Latex 时,没有出现这样的错误消息。

  • 关于包的警告caption:除非您有充分的理由,否则不要加载包caption,它已经集成到memoir类中。如果您只想减少标题上方和下方的空间,请使用

    \abovecaptionskip=0pt
    \belowcaptionskip=0pt
    
  • 您不需要该fancyhdr包。回忆录文档的第 7 章解释了如何设置标题。

  • 您可能也不需要floatand subfig,因为此功能也集成到了 中memoir

我建议删除除 之外的所有软件包ams*。如果您需要某些功能,请查看回忆录手册和/或在此处询问。

相关内容