我正在使用 Pandoc 从 Markdown 生成 PDF,但无法生成表格。使用的终端命令是:
$ pandoc -s -o foo.pdf --latex-engine=xelatex --filter pandoc-citeproc bar.md
我的 markdown 文档中使用的网格表如下所示:
+---------------+---------------+--------------------+
| Fruit | Price | Advantages |
+===============+===============+====================+
| Bananas | $1.34 | - built-in wrapper |
| | | - bright color |
+---------------+---------------+--------------------+
| Oranges | $2.10 | - cures scurvy |
| | | - tasty |
+---------------+---------------+--------------------+
我试过切换 LaTeX 引擎,使用不同形式的降价表,我能想到的一切。令人恼火的是,我让这个工作了一次,并且在过去的几个小时里试图重现结果,但没有成功。相反,我只是不断收到以下错误消息:
pandoc: Error producing PDF from TeX source.
! Undefined control sequence.
\y ->\LT@array
l.7128 }{}
有任何想法吗?我正在使用 Pandoc v. 1.12.0.2。