Jupyter notebook:如何为LaTeX使用\ usepackage {}
我想知道如何在Jupyter笔记本中使用usepackage{}
作为LaTeX。
不确定这是否是唯一的甚至是最好的方式,但它似乎有效。 在与ipynb笔记本文件(“mynotebook.ipynb”)相同的目录中写入模板文件(“mytemplate.tplx”)。 mytemplate.tplx看起来像:
((*- extends 'article.tplx' -*))
((* block packages *))
((( super() )))
usepackage{amsmath}
usepackage{newtxtext,newtxmath}
((* endblock packages *))
通过执行以下步骤构建您的pdf LaTex文件:
jupyter nbconvert mynotebook.ipynb --to latex --template mytemplate.tplx
pdflatex mynotebook.tex
链接地址: http://www.djcxy.com/p/37029.html