1

Jupyter 的默认导出为 PDF,如命令行 NBconvert 工具,告诉我我无法将我的笔记本转换为 PDF,因为 PDF 转换通过xelatex. 错误消息将我引至此帮助页面,因此我安装了 MiKTeX。我在 中有一个xelatex文件夹AppData\Local\Programs\MiKTeX 2.9\tex,但我不确定我应该将什么添加到我的 PATH 中。

如果有帮助,这里是 nbconvert 的 pdf.py 中的一些代码:

def run_latex(self, filename):
    """Run xelatex self.latex_count times."""

    def log_error(command, out):
        self.log.critical(u"%s failed: %s\n%s", command[0], command, out)

    return self.run_command(self.latex_command, filename,
        self.latex_count, log_error) 
4

0 回答 0