我正在使用这个命令行(批处理文件):
.\pandoc.exe --pdf-engine-opt=-shell-escape --from=markdown --output=test.pdf mini.md --template .\templates\test.template
使用此输入文件
#Testbook
Testline
使用此模板
\documentclass[a4paper]{book}
\usepackage[top=1.25in, bottom=1.25in, left=1in, right=3in]{geometry}
\usepackage[inlineFootnotes=true,pipeTables=true]{markdown}
% Language, Smart-convert " to guillemets
\usepackage[ngerman]{babel}
\usepackage[inlineFootnotes=true,pipeTables=true]{markdown}
% Meta
\title{Testtitle}
\author{Testname}
\date{Testdate}
\begin{document}
\markdownInput{test.md}
\end{document}
这是为什么?我能找到的唯一关于这个错误的参考资料是这里https://github.com/Witiko/markdown/issues/6在我看来这似乎并不适用于此。