我在Windows 7中安装了texlive 2017。 对于python,anaconda3安装在系统中。 python路径和库是环境变量已知的。
创建一个非常简单的tex文件,如下所示:
\documentclass{article}
\usepackage{minted}
\begin{document}
\begin{minted}[mathescape,
linenos,
numbersep=5pt,
gobble=2,
frame=lines,
framesep=2mm]{csharp}
string title = "This is a Unicode pi in the sky"
/*
Defined as $\pi=\lim_{n\to\infty}\frac{P_n}{d}$ where $P$ is the perimeter
of an $n$-sided regular polygon circumscribing a
circle of diameter $d$.
*/
const double pi = 3.1415926535
\end{minted}
\end{document}
首先,打开一个git-bash并输入以下命令
pdflatex -shell-escape sample.tex
效果很好。
然后,打开cmd窗口并键入相同的命令。 现在,它说
\minted@apppathifexists=
! Package minted Error: You must have 'pygmentize' installed to use this package
这个问题的罪魁祸首是什么? 任何建议将不胜感激。