我习惯minted
在文档中设置代码样式。但在某些情况下,代码中会出现一个奇怪的框,其中大多数情况下都带有引号。
以下 MWE 显示了我的问题。
\documentclass{article}
\usepackage{minted}
\begin{document}
\begin{minted}{python}
>>> str
<class 'str'>
>>> str.count
<method 'count' of 'str' objects>
\end{minted}
\end{document}