书目和 Tex4ht

书目和 Tex4ht

我正在使用TeX4ht下安装的 将包含参考文献的 TeX 转换为 HTML MikTeX。该程序生成 HTML,但缺少参考书目,有什么想法吗?以下 test.tex在 TexWorks 下生成带有pdfLateX+ 的干净 test.pdf,但生成没有参考书目的 test.html: BibTeXhtlatex test.tex

\documentclass{article} 

\usepackage[utf8]{inputenc}
\usepackage{hyperref}

\begin{document}

\begin{section}{Publications}
\nocite{thesis}
\end{section}

\bibliographystyle{test}    % .bst
\renewcommand\refname{}
\bibliography{test}{}   % .bib

\end{document}

答案1

如果您有test.bst并且其中test.bib包含引用thesis,则命令提示符中的以下几行将生成HTML带有引用的文件(假设您的TeX文件名为test.tex):

htlatex test
bibtex test
htlatex test

相关内容