问题描述
我尝试使用
将 Markdown 文件转换为 PDFFOR %%i IN (*.md) DO pandoc "%%~fi" -o "%%~dpni.pdf" --template=weber-export.tex --pdf-engine=xelatex
但它不会转换 pandoc-tables。而是出现一个错误说
Error producing PDF.
! Missing number,treated as zero.
<to be read again>
(
l.357 ...columnwidth - 2\tabcolsep) * \real{0.33}}
它不会转换的表格的简单版本是:
Consumption / yield
---------------------
+--+---+--+
| | | |
| | | |
| | | |
+--+---+--+
| | | |
| | | |
| | | |
+--+---+--+
| | | |
| | | |
| | | |
+--+---+--+
和
-------------------------------------------------------------------
Type Sales unit Number
------------------------------- ------------ ----------------------
Plastic bucket 30 liters 18 buckets
-------------------------------------------------------------------
就像它在 Pandoc User's Guid
中的解释我已经在 Win 10 上安装了 Miktex 2.9 和 pandoc 2.11.2
没有表格,转换效果很好,即使我尝试没有第一行的表格
Type Sales unit Number
------------------------------- ------------ ----------------------
Plastic bucket 30 liters 18 buckets
-------------------------------------------------------------------
它有效。
解决方法
您的自定义模板似乎没有加载所有必需的包。
添加
\usepackage{calc,array}
到您的模板以确保必要的命令可用。