如何关闭 TeX4ht 中的图像创建

如何关闭 TeX4ht 中的图像创建

我不想将图像复制为任何格式,例如 png,我需要关闭选项,对于方程式,我使用 mathjax 选项

我运行文件

make4ht.exe -l -a debug -u -c mycfg.cfg <filename>.tex 

和 Texlive 2022

帮我关闭图像生成

我的CFG:

\Preamble{xhtml,uni-html4,mathjax,charset=UTF-8,fn-in,NoFonts,ext=.xhtml}

\begin{document}

\EndPreamble

梅威瑟:

\documentclass{article}

\usepackage{amsmath,array,multirow,graphics,graphicx}


\begin{document}

\begin{figure}
\includegraphics{fig2}
\caption{$y=5/x$}
\label{fig:five over x}
\end{figure}

\end{document}

相关内容