跳过编译中的某些部分

跳过编译中的某些部分

是否可以跳过文本来编译包含章节、文本、图形和公式的文件?我希望有一个选择:

编译所有内容

仅编译不带标题的方程式、章节和图形

文件的结构来自输入命令:

\documentclass[11pt]{book}


\begin{document}
\input{chapter1}
\input{chapter2}
\input{chapter3}
\end{document}

答案1

排除所有正常文本的一种方法是使用\nullfont,但我不确定您是否会喜欢这样,它只会跳过其中没有任何字体变化的文本:

\documentclass[]{book}

\usepackage[]{graphicx}

\begin{document}
\nullfont
\chapter{This Chapter Heading}
This text \emph{emphasized}
\section{This Section Heading}
This text
\begin{figure}% >>=
  \centering
  \includegraphics{example-image-duck}%
  \caption
    {%
      This caption%
      \label{fig:duck}%
    }%
\end{figure}% =<<
This text
\subsection{This Subsection Heading}
This text
\begin{equation}
  E=mc^2
\end{equation}
\end{document}

在此处输入图片描述

相关内容