latex_sphinx_article.tplx
40 lines
| 1.2 KiB
| text/plain
|
TextLexer
Jonathan Frederic
|
r12686 | |||
%=============================================================================== | ||||
% Cell style | ||||
%=============================================================================== | ||||
% Inherit from the specified cell style. | ||||
((* extends 'latex_article.tplx' *)) | ||||
%=============================================================================== | ||||
% Latex Sphinx Article | ||||
%=============================================================================== | ||||
((* block docclass *)) | ||||
% Make sure that the sphinx doc style knows who it inherits from. | ||||
\def\sphinxdocclass{article} | ||||
% Declare the document class | ||||
\documentclass[letterpaper,10pt,english]{((( resources.sphinx.texinputs | posix_path )))/sphinxhowto} | ||||
((* endblock docclass *)) | ||||
((* block packages *)) | ||||
Jonathan Frederic
|
r12690 | ((* block chstyle *)) | ||
\usepackage[Bjarne]{((( resources.sphinx.texinputs | posix_path )))/fncychap} | ||||
((* endblock chstyle *)) | ||||
Jonathan Frederic
|
r12686 | \usepackage{((( resources.sphinx.texinputs | posix_path )))/sphinx} | ||
((( super() ))) | ||||
((* endblock packages *)) | ||||
((* block commands *)) | ||||
((( super() ))) | ||||
Jonathan Frederic
|
r12691 | % Override to specify your own logo | ||
((* block logo *))\newcommand{\sphinxlogo}{}((* endblock logo *)) | ||||
Jonathan Frederic
|
r12686 | |||
% Make the index page of the document. | ||||
\makeindex | ||||
((* endblock commands *)) | ||||