Sometimes pygments puts characters in red boxes, and I'd like to disable this feature.
In the following example:
\documentclass[a4paper,10pt]{report}
\usepackage[latin1]{inputenc}
\usepackage[francais]{babel}
\usepackage{pythontex}
\begin{document}
\begin{pygments}{python}
>>> a = "L'été sera chaud"
>>> zeros(4, 0)
AssertionError: Dimensions négatives ou nulles.
\end{pygments}
\end{document}
the first two "é" are correctly displayed, but the last one in "négatives" is boxed, and I'd like to remove this ugly box.
I apologize for this newbie question, but I couldn't find any help in the massive pygments documentation, wich is way too complex for me.
pythontexgives errors: I can see the box you are talking about in UTF-8 encoding. – Joseph Wright Jan 19 '14 at 13:27