使用 TeXmaker 铸造错误“未定义的控制序列。\PYG”

使用 TeXmaker 铸造错误“未定义的控制序列。\PYG”

我有一台 Windows 10 计算机,并尝试使用该minted包将 vhdl 代码插入我的 LaTeX 文件中。我确实安装了 Python 和 Pygments,并将 Python/scripts 添加到路径中。我还使用更改了 TeXmaker 的命令行-shell-escape。当我尝试运行如下小示例时:

\documentclass[%
    a4paper,            % Papierformat
    oneside,            % einseitiger Druck
    %twoside,           % zweiseitiger Druck
    12pt,               % Schriftgröße
    onecolumn,          % einspaltiger Text
    %twocolumn,         % zweispaltiger Text
    openright,          % Kapitel dürfen nur auf einer rechten Seite beginnen
    openany,            % Kapitel dürfen rechts oder links beginnen
    parskip=half,       % eine halbe Zeile Abstand zw. Absätzen
    headsepline,        % Kopfzeilenlinie
    footsepline,        % Fußzeilenlinie
    bibliography=totoc, % Bibliographie im Inhaltsverzeichnis
    %idxtotoc           % Index im Inhaltsverzeichnis
    ]{scrbook}
\usepackage{minted}
\begin{document}
\begin{minted} {vhdl}
process
begin
  CLK <= '1'; wait for 10 NS;
  CLK <= '0'; wait for 10 NS;
end process;
\end{minted}
\end{document}

我收到错误...

Undefined control sequence. \PYG #1#2->\FV@PYG
{#1}{\FancyVerbBreakStart #2\FancyVerbBreakStop } l.2 \PYG{k}{process}
The control sequence at the end of the top line of your error message
was never \def'ed. If you have misspelled it (e.g., `\hobx'), type `I'
and the correct spelling (e.g., `I\hbox'). Otherwise just continue,
and I'll forget about whatever was undefined.

答案1

我在 Linux 中遇到了类似的问题,删除_minted*目录解决了这个问题。另一个选择是使用选项 包含mintedcache=false。您可以使用\usepackage[cache=false]{minted}而不是 来做到这一点\usepackage{minted}

来源:Github 问题

相关内容