你好,我正在尝试使用这里给出的解决方案隐藏所有标题和\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}