如何在 tex4ebook TOC 中包含子章节?

如何在 tex4ebook TOC 中包含子章节?

此 MWE 正确显示了目录中的子节,但当我创建带有tex4ebook -l main.tex目录的 epub 时,目录仅包含节的深度。我该如何让它包含子节?

\documentclass{memoir}

\begin{document}

\tableofcontents

\chapter{Chapter 1}
\section{Section 1.1}
\subsection{Subsection 1.1.1}
\subsection{Subsection 1.1.2}
\section{Section 1.2}
\subsection{Subsection 1.2.1}

\chapter{Chapter 2}
\section{Section 2.1}
\subsection{Subsection 2.1.1}
\subsection{Subsection 2.1.2}
\section{Section 2.2}
\subsection{Subsection 2.2.1}
\subsection{Subsection 2.2.2}

\end{document}

在此处输入图片描述

答案1

它符合 Memoir 的行为,它也不包含\subsections在 TOC 中。你可以使用此配置文件请求它们:

\Preamble{xhtml}
\Configure{tableofcontents*}{chapter,section,subsection}
\begin{document}
\EndPreamble

此配置列出了应在 中列出的分段命令类型\tableofcontents。如果要包含带星号的分段版本,请使用like前缀,例如likesection

这是最终的目录:

在此处输入图片描述

请注意,其中未包含小节编号,因为 Memoir 没有将这些小节编号保存在 TOC 元数据中。

相关内容