在 noweb html 中插入图像

在 noweb html 中插入图像

我尝试将图像插入 noweb 源文件。如下所示:

\begin{figure}[htb]
  \begin{center}
    \includegraphics[width=\textwidth]{cases}
    \caption{Different cases}
  \end{center}
\end{figure}

当我尝试使用以下命令生成 pdf 文件时,它起作用了:

noweave -delay -n -index src.nw > src.tex
pdflatex src.tex

但是,当我尝试使用以下命令生成 html 文件时,它不起作用。

noweave -filter l2h -html -delay -n -index src.nw > src.html

相反,html 文件显示“难以理解的图形”。

该图像是当前目录中的“cases.png”。

答案1

看来操作系统分发的 noweb 是使用 AWK 构建的。我下载了 noweb 并使用图标构建了它。现在 html 页面显示了正确的图像。

相关内容