From 3a60a054b90e1fe5e2b49dfddbaea0d8b56cc017 2013-09-23 17:34:23
From: Jonathan Frederic <jdfreder@calpoly.edu>
Date: 2013-09-23 17:34:23
Subject: [PATCH] Use simple verbatim in base

---

diff --git a/IPython/nbconvert/templates/latex/latex_base.tplx b/IPython/nbconvert/templates/latex/latex_base.tplx
index d363b2b..4282fcb 100644
--- a/IPython/nbconvert/templates/latex/latex_base.tplx
+++ b/IPython/nbconvert/templates/latex/latex_base.tplx
@@ -92,14 +92,14 @@ This template does not define a docclass, the inheriting class must define this.
 
 % Displaying simple data text
 ((* block data_text *))
-    \begin{Verbatim}
-((( output.text | escape_latex )))
-    \end{Verbatim}
+    \begin{verbatim}
+((( output.text )))
+    \end{verbatim}
 ((* endblock data_text *))
 
 % Display python error text as-is
 ((* block pyerr *))
-    \begin{Verbatim}
+    \begin{Verbatim}[commandchars=\\\{\}]
 ((( super() )))
     \end{Verbatim}
 ((* endblock pyerr *))