使用 tex4ht 将 LaTeX 文件转换为 HTML 时使用 \caption 命令

使用 tex4ht 将 LaTeX 文件转换为 HTML 时使用 \caption 命令

嗨,我是 LateX 和 Tex4ht 的新手。所以请原谅我的经验不足。

我需要将 LaTeX 源文件转换为 HTML(我还需要将它们编译成 .chm 文件;我决定先处理 HTML 输出,然后再处理 chm 部分)

我的资料来源包括图片,我已使用\caption命令提供必要的标题。MWE 为:

\begin{figure}[htbp]
 \begin{center}
  \includegraphics[width=\linewidth,keepaspectratio]{figs/figure1.png}
 \end{center}
 \caption{Startup Screen}
\end{figure}

pdflatex从命令提示符运行命令时,我得到了准确的.pdf文件,但是当我运行该htlatex命令时,标题向形成的左侧倾斜.html

任何帮助都非常感谢..!谢谢

答案1

您可以在自定义配置文件中使用 css 指令配置外观。

尝试一下,将文件命名为myconf.cfg

\Preamble{xhtml}
\Css{div.caption{text-align:center;}}
\begin{document}
\EndPreamble

重要的一行是\Css{div.caption ...}whis 是将文本居中的 css 指令,是由for命令div.caption生成的元素。tex4ht\caption

现在编译你的文件

htlatex filename "myconf"

并且标题应该居中

相关内容