12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- ((= IPython input/output style =))
- ((*- extends 'base.tplx' -*))
- % Custom definitions
- ((* block definitions *))
- ((( super() )))
- % Pygments definitions
- ((( resources.latex.pygments_definitions )))
- % Exact colors from NB
- \definecolor{incolor}{rgb}{0.0, 0.0, 0.5}
- \definecolor{outcolor}{rgb}{0.545, 0.0, 0.0}
- ((* endblock definitions *))
- %===============================================================================
- % Input
- %===============================================================================
- ((* block input scoped *))
- ((*- if resources.global_content_filter.include_input_prompt *))
- ((( add_prompt(cell.source | highlight_code(strip_verbatim=True, metadata=cell.metadata), cell, 'In ', 'incolor') )))
- ((*- else *))
- ((( cell.source | highlight_code(strip_verbatim=True, metadata=cell.metadata) )))
- ((* endif *))
- ((* endblock input *))
- %===============================================================================
- % Output
- %===============================================================================
- ((* block execute_result scoped *))
- ((*- for type in output.data | filter_data_type -*))
- ((*- if resources.global_content_filter.include_output_prompt -*))
- ((*- if type in ['text/plain'] *))
- ((( add_prompt(output.data['text/plain'] | escape_latex, cell, 'Out', 'outcolor') )))
- ((* else -*))
- \texttt{\color{outcolor}Out[{\color{outcolor}((( cell.execution_count )))}]:}((( super() )))
- ((*- endif -*))
- ((*- else -*))
- ((*- if type in ['text/plain'] *))
- ((( output.data['text/plain'] | escape_latex )))
- ((* else -*))
- ((( super() )))
- ((*- endif -*))
- ((*- endif -*))
- ((*- endfor -*))
- ((* endblock execute_result *))
- %==============================================================================
- % Support Macros
- %==============================================================================
- % Name: draw_prompt
- % Purpose: Renders an output/input prompt
- ((* macro add_prompt(text, cell, prompt, prompt_color) -*))
- ((*- if cell.execution_count is defined -*))
- ((*- set execution_count = "" ~ (cell.execution_count | replace(None, " ")) -*))
- ((*- else -*))
- ((*- set execution_count = " " -*))
- ((*- endif -*))
- ((*- set indention = " " * (execution_count | length + 7) -*))
- \begin{Verbatim}[commandchars=\\\{\}]
- ((( text | add_prompts(first='{\color{' ~ prompt_color ~ '}' ~ prompt ~ '[{\\color{' ~ prompt_color ~ '}' ~ execution_count ~ '}]:} ', cont=indention) )))
- \end{Verbatim}
- ((*- endmacro *))
|