pandoc 中的 LaTeX 表格、标题

pandoc 中的 LaTeX 表格、标题

如果我把一个简单的 LaTeX 表格输入到 Pandoc,例如

\begin{table}[h!]
\begin{tabular}{ll}
x&y\\
\end{tabular}
\caption{A caption}
\end{table}

并使用将其转换为 HTML

pandoc -s table.tex -o table.html

生成的表格将缺少标题(此外,它还会打印字符“[h!]”,这只是为了表格定位):

<p>[h!]</p>
<table>
<tbody>
<tr class="odd">
<td align="left">x</td>
<td align="left">y</td>
</tr>
</tbody>
</table>

我是否必须以不同的方式运行 pandoc?我在 Mac OS X 10.6.8 上使用 pandoc 版本 1.12.3。使用我以前的 Pandoc 版本(我相信是 1.9),标题在 HTML 中呈现得很好。

答案1

该问题已在较新版本的 Pandoc 中得到解决(参见这次提交,关注 OP 的票在 github)。早于 的版本1.12.4应该可以解决这个问题。

例如,使用 pandoc 1.12.4.2(使用 texmath 0.6.6.1、highlighting-kate 0.5.8.5 编译),以下代码

\documentclass{article}
\begin{document}
\begin{table}[h!]
\begin{tabular}{ll}
x&y\\
\end{tabular}
\caption{A caption}
\end{table}
\end{document}

生产

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <meta http-equiv="Content-Style-Type" content="text/css" />
  <meta name="generator" content="pandoc" />
  <title></title>
  <style type="text/css">code{white-space: pre;}</style>
</head>
<body>
<table>
<caption>A caption</caption>
<tbody>
<tr class="odd">
<td align="left">x</td>
<td align="left">y</td>
</tr>
</tbody>
</table>
</body>
</html>

渲染结果为

在此处输入图片描述

当用 编译时pandoc -s table.tex -o table.html

相关内容