tex4ebook:电子书章节问题

tex4ebook:电子书章节问题

在旧版本的 tex4ebook(2022 年初)中,部分工作正常。然而,在当前版本中,我遇到了问题,无法再编译文件。我使用参数-a debug -c config.cfg -f epub3 "%wm"

以下是 MWE:

\documentclass[12pt]{book}
\usepackage{amsthm}

\begin{document}

\section{Header of Section 1} 

Text within section 1.

\section{Header of Section 2}

Text within section 2.

\end{document}

还有一个简单的配置文件:

\Preamble{xhtml}

\begin{document}
\EndPreamble

如果我改用建议的配置文件这里,我收到错误消息“TeX 容量超出,抱歉 [输入堆栈大小 = 10000]”。

\Preamble{xhtml}
\CutAt{section}
\begin{document}
\EndPreamble

如果我使用带有无剪切选项的以下配置文件,我会收到与使用第一个配置文件(没有 CutAt 命令的文件)相同的错误:

\Preamble{xhtml,no-cut}
\CutAt{section}
\begin{document}
\EndPreamble

相关内容