背景/用例:https://genai.stackexchange.com/questions/386/how-does-chatgpt-render-math-in-markdown-output
markdown 中的语法\( ... \)
对应于 LaTex 数学内联模式,并且\[ ... \]
对应于非内联 LaTex 数学。
例子:
ChatGPT Web UI 呈现此 markdown 输出is \( 2^4 = 16 \).
作为:
是否有一个工具可以让我正确地将带有这种内联数学符号的 markdown 文件呈现为 PDF?
pandoc
也许可以完成这项工作,但我不确定要使用什么选项/标志来执行此操作。
答案1
是的,pandoc 可以转换这种内联\( 2^4 = 16 \)
语法。
您需要做的就是启用tex_math_single_backslash
扩大像这样:
pandoc test.md -f markdown+tex_math_single_backslash -o test.pdf