我在 Windows 上使用 Miktex 2.9。编译时:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{markdown}
\begin{document}
\begin{markdown}
| xyz | abc |
| --- |: --: |
| 0 | 5 |
|5 |1 |
\end{markdown}
\end{document}
使用miktex-pdflatex.exe
(以管理员身份运行),我得到:
包 markdown 错误:我无法访问 shell。
注意:当我第一次编译此代码时,该包markdown
已经安装(由 Miktex 自动下载)。
答案1
正如本文所提到的回答并在评论中部分的解决方法是:
miktex-pdflatex.com --shell-escape mydocument.tex
代替
miktex-pdflatex.com mydocument.tex
但即使编译成功,
begin{markdown}
| xyz | abc |
| --- |: --: |
| 0 | 5 |
|5 |1 |
\end{markdown}
仍然没有呈现,因此该markdown
包可能不支持表格。