如何处理 pandoc 中的“未定义的控制序列”错误?

如何处理 pandoc 中的“未定义的控制序列”错误?

我在 convert.md 格式的文档中的第一行是:

\thispagestyle{empty} %line1
\changepage{}{}{}{-1.5cm}{}{2cm}{}{}{} %line2
![The Little MongoDB Book, By Karl Seguin](title.png)\ %line3
\clearpage %line4
\changepage{}{}{}{1.5cm}{}{-2cm}{}{}{} %line5

因此在win7 cmd中运行以下命令:

pandoc --latex-engine=xelatex --template=latex_template.tex convert.md -o convert.pdf

但结果显示:

Error producing PDF from Tex source.
!Undefined control sequence.
1.78 \changepage

如果删除“line1, line2, line4, line5”,command line 就可以正常运行。错误是怎么回事,如何处理?谢谢!

相关内容