TeXLipse、Pygments 和 minted 包无法正常工作

TeXLipse、Pygments 和 minted 包无法正常工作

我在 Mac OS X 10.8.3 上运行时遇到了一点小问题。

我已经安装的东西:

  • minted 1.7(已通过 TeX Live Utility 安装)
  • Python 2.7
  • Pygments 1.6(位于 $PATH 环境中,可以在终端的任何位置调用)

为了编写 TeX 代码,我使用了 Eclipse 插件 TeXLipse。为了生成 PDF 输出,它使用带有“--shell-escape”参数的 XeLaTeX。

对于以下代码我收到错误消息:

Package minted Error: You must have `pygmentize' installed to use this package.

最小代码是:

\documentclass{article}
\usepackage{minted}

\begin{document}

\section{My sourcecode}
Code

\end{document}

也许有人知道如何让 minted 工作。谢谢!

相关内容