我打算使用 GNUpandoc
将嵌入了 LaTeX 的 markdown 文件转换为 pdf。但它似乎不允许\mathscr
。是不是因为pandoc
需要mathrsfs
,但似乎无法自动链接它。
最小示例
test.md
::
Maclaurin expansion: $\sin x =x +\mathscr{O}(x^3)$
如果正在编译(在 MacOs Sierra、Macbook Air 上)
pandoc -s -o test.pdf test.md
有错误信息
! Undefined control sequence.
l.59 Maclaurin expansion: \(\sin x =x +\mathscr
pandoc: Error producing PDF
或者,更一般地,如果是由于pandoc
无法自动找到必要的包,有什么方法可以包含 LaTeX 包吗pandoc
?
答案1
该\mathscr
命令需要\usepackage{mathrsfs}
谷歌花了几秒钟才找到Lauritz 的博客并附有示例告诉您如何添加必要的包。
---
header-includes:
- \usepackage{mathrsfs}
---
# Section
Maclaurin expansion: $\sin x =x +\mathscr{O}(x^3)$