实现隐藏部分和章节标题,来自此解决方案https://tex.stackexchange.com/questions/16050/hide-part-and-chapter-headings

实现隐藏部分和章节标题,来自此解决方案https://tex.stackexchange.com/questions/16050/hide-part-and-chapter-headings

你好,我正在尝试使用这里给出的解决方案隐藏所有标题和\Chapter \section标题\subsection隐藏部分和章节标题

我也研究过其他可能的解决方案,但它们无法保持目录的完整性,因此这个解决方案似乎是最合适的。但是,即使使用 MWE,我也无法让解决方案发挥作用,因为它会抛出\hide未定义的控制序列。^^I\hide。

有人能帮忙吗?这是我的 MWE 副本。

\documentclass[a4paper, 12pt ]{report}
\usepackage[explicit]{titlesec}

\newcommand*\Hide{%
\titleformat{\chapter}[display]
{}{}{0pt}{\Huge}
\titleformat{\part}
{}{}{0pt}{}
}

\usepackage{fontspec}
\setmainfont{FreeSerif}
\setsansfont{FreeSans}
\setmonofont{FreeMono}
\usepackage{polyglossia}
\setdefaultlanguage{english}
\setotherlanguages{greek,hebrew}

\begin{document}
{
\hide
 \chapter{Introduction}

 \section{Background Statement}
 }

 \end{document}

相关内容