将 minted escapeinside 选项与 pycon 词法分析器结合使用

将 minted escapeinside 选项与 pycon 词法分析器结合使用

这里发生了什么?

\documentclass{article}
\usepackage{minted}

\begin{document}

% I want to show the output as latex, this is a minimal repro without any output at all
\begin{minted}[escapeinside=QQ,python3=true]{pycon}
>>> g = str('e_x e_y e_z')
\end{minted}

% works fine otherwise
\begin{minted}[python3=true]{pycon}
>>> g = str('e_x e_y e_z')
\end{minted}

\end{document}

给出

在此处输入图片描述

为何被g = str(移除?

答案1

这是一个pygments错误,并且不受控制mintedhttps://github.com/pygments/pygments/issues/1516

编辑:PR 在这里修复此问题:https://github.com/pygments/pygments/pull/1517

相关内容