report.tplx 907 B

1234567891011121314151617181920212223242526
  1. % Default to the notebook output style
  2. ((* if not cell_style is defined *))
  3. ((* set cell_style = 'style_ipython.tplx' *))
  4. ((* endif *))
  5. % Inherit from the specified cell style.
  6. ((* extends cell_style *))
  7. %===============================================================================
  8. % Latex Book
  9. %===============================================================================
  10. ((* block predoc *))
  11. ((( super() )))
  12. ((* block tableofcontents *))\tableofcontents((* endblock tableofcontents *))
  13. ((* endblock predoc *))
  14. ((* block docclass *))
  15. \documentclass{report}
  16. ((* endblock docclass *))
  17. ((* block markdowncell scoped *))
  18. ((( cell.source | citation2latex | strip_files_prefix | convert_pandoc('markdown+tex_math_double_backslash', 'json',extra_args=[]) | resolve_references | convert_pandoc('json','latex', extra_args=["--top-level-division=chapter"]) )))
  19. ((* endblock markdowncell *))