我嘗試將文件 3AHET.tex 轉換為 HTML,但收到錯誤:
! LaTeX Error: File `test' not found.
See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
l.244 ... \includegraphics[scale=0.2]{test}
執行命令時
htlatex 3AHET.tex
我正在使用 Graphicx 套件來顯示圖像:
\usepackage{graphicx}
\graphicspath{ {./images/} }
在文件中:
\includegraphics[scale=0.2]{test}
我使用 MiKTeX 和 pdfLatex 編譯文件/將其轉換為 pdf 沒有任何問題。
答案1
tex4ht
在 DVI 模式下編譯文檔,其中唯一支援的開箱即用圖形格式是eps
.如果您想使用jpg
、png
或svg
,則需要聲明應在圖像包含中尋找的擴展名清單。這可以在設定檔中完成:
\Preamble{xhtml}
\DeclareGraphicsExtensions{.png,.jpg,.svg}
\begin{document}
\EndPreamble
-c
可以使用以下選項請求設定檔make4ht
:
make4ht -c config.cfg 3AHET.tex