造型pandoc HTML - >带有LaTeX的PDF表格

时间:2014-08-26 01:03:40

标签: pdf latex styling pandoc pdflatex

我正在从HTML文件生成PDF文件。我在原始源文件中有一个<table>,如下所示:

<table>
  <tr>
    <td>
      <div>title</div>
      <img></img>
      <div>other stuff</div>
    </td>
    <td>
      <div>title</div>
      <img></img>
      <div>other stuff, perhaps some LaTeX $\alpha$</div>
    </td>
  </tr>
  <tr>
    [...]
  [...]
</table>

使用以下命令在最终的.pdf文件中渲染一切:

pandoc -f html+tex_math_dollars+tex_math_single_backslash -V geometry:margin=0.2in -o foo.pdf

我希望以这样的方式添加一些样式

  • 表格单元格内容居中
  • 表行之间有更多填充
  • 表格单元格周围有边框

将CSS添加到HTML似乎没有什么区别,所以我相信它更多的是指导LaTeX如何渲染最终产品。

有什么建议吗?

0 个答案:

没有答案