Tex4ht 不生成 html 标签

Tex4ht 不生成 html 标签

我正在尝试从我的 .tex 文件生成一个 html 文档(我只需要段落和链接格式,没什么特别的)。

我今天在 Windows 10 上使用 Texmaker 5.0.3、Miktex 2.9,安装了 tex4ht 包。

在 Texmaker 中,我用“LaTex”构建 .tex 文件以生成 dvi 文件。然后我转到工具 -> 通过 Tex4ht 导出,选择“导出到 html”并运行。

运行完成且没有错误,我可以看到工作文件夹中已生成一个 html 文件。但是当我在浏览器中打开此 html 文件时,根本没有任何格式。当我查看页面的源代码时,我可以看到没有添加任何 html 标记(它只是纯文本)。

我的 .tex 源代码很少:

\documentclass[a4paper, oneside, 12pt]{article}
\usepackage[utf8]{inputenc} 
\usepackage[T1]{fontenc}    
\DeclareUnicodeCharacter{00A0}{ }
\usepackage[margin=2.0cm]{geometry}        
\usepackage[nottoc, notlof, notlot]{tocbibind}
\usepackage[pdftex]{graphicx} 
\usepackage{color}
\usepackage{amsmath}
\usepackage[style=nature, url=true]{biblatex}
\usepackage{hyperref}
\addbibresource{C:/library.bib}
\usepackage{setspace} 
\doublespacing 

\begin{document}
\begin{center}

{\Huge Title}

\end{center}

Test paragraph~\cite{Aristotle1999} with references.

\bigskip

Test paragraph 2.

\printbibliography

\end{document}

我错过了什么?

相关内容