style_ipython.tplx
54 lines
| 1.8 KiB
| text/plain
|
TextLexer
Jonathan Frederic
|
r12719 | ((= IPython input/output style =)) | ||
Jonathan Frederic
|
r12718 | |||
Thomas Kluyver
|
r13925 | ((*- extends 'base.tplx' -*)) | ||
Jonathan Frederic
|
r12718 | |||
% Custom definitions | ||||
((* block definitions *)) | ||||
((( super() ))) | ||||
% Pygments definitions | ||||
Jonathan Frederic
|
r12742 | ((( resources.latex.pygments_definitions ))) | ||
Jonathan Frederic
|
r12718 | |||
Jonathan Frederic
|
r12734 | % Exact colors from NB | ||
\definecolor{incolor}{rgb}{0.0, 0.0, 0.5} | ||||
\definecolor{outcolor}{rgb}{0.545, 0.0, 0.0} | ||||
Jonathan Frederic
|
r12718 | ((* endblock definitions *)) | ||
%=============================================================================== | ||||
% Input | ||||
%=============================================================================== | ||||
((* block input scoped *)) | ||||
((( add_prompt(cell.input | highlight2latex(strip_verbatim=True), cell, 'In ', 'incolor') ))) | ||||
((* endblock input *)) | ||||
%=============================================================================== | ||||
% Output | ||||
%=============================================================================== | ||||
((* block pyout scoped *)) | ||||
((*- for type in output | filter_data_type -*)) | ||||
((*- if type in ['text']*)) | ||||
((( add_prompt(output.text | escape_latex, cell, 'Out', 'outcolor') ))) | ||||
((* else -*)) | ||||
Jonathan Frederic
|
r12734 | \texttt{\color{outcolor}Out[{\color{outcolor}((( cell.prompt_number )))}]:}((( super() ))) | ||
Jonathan Frederic
|
r12718 | ((*- endif -*)) | ||
((*- endfor -*)) | ||||
((* endblock pyout *)) | ||||
%============================================================================== | ||||
% Support Macros | ||||
%============================================================================== | ||||
% Name: draw_prompt | ||||
% Purpose: Renders an output/input prompt | ||||
((* macro add_prompt(text, cell, prompt, prompt_color) -*)) | ||||
((*- set prompt_number = "" ~ cell.prompt_number -*)) | ||||
Jonathan Frederic
|
r12736 | ((*- set indention = " " * (prompt_number | length + 7) -*)) | ||
Jonathan Frederic
|
r12718 | \begin{Verbatim}[commandchars=\\\{\}] | ||
Jonathan Frederic
|
r12736 | ((( text | add_prompts(first='{\color{' ~ prompt_color ~ '}' ~ prompt ~ '[{\\color{' ~ prompt_color ~ '}' ~ prompt_number ~ '}]:} ', cont=indention) ))) | ||
Jonathan Frederic
|
r12718 | \end{Verbatim} | ||
((*- endmacro *)) | ||||