如何在 tex4ebook 目錄中包含小節?

如何在 tex4ebook 目錄中包含小節?

此 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

這與回憶錄的行為一致,也不包含\subsections在目錄中。您可以使用此設定檔請求它們:

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

此配置列出了應在 中列出的分段命令類型\tableofcontents。如果要包含有星號的部分版本,請使用like前綴,例如likesection

這是生成的目錄:

在此輸入影像描述

請注意,不包括小節編號,因為回憶錄不會將這些編號保存在 TOC 元資料中。

相關內容