##// END OF EJS Templates
Embed LaTeX output from pyout into equation* environment
jakobgager -
Show More
@@ -150,7 +150,7 b' class ConverterLaTeX(Converter):'
150
150
151 # output is a dictionary like object with type as a key
151 # output is a dictionary like object with type as a key
152 if 'latex' in output:
152 if 'latex' in output:
153 lines.extend(output.latex)
153 lines.extend(self.in_env('equation*', output.latex.lstrip('$$').rstrip('$$')))
154
154
155 if 'text' in output:
155 if 'text' in output:
156 lines.extend(self.in_env('verbatim', output.text))
156 lines.extend(self.in_env('verbatim', output.text))
General Comments 0
You need to be logged in to leave comments. Login now