##// END OF EJS Templates
Whoops, missed inheritance when s/book/report
Jonathan Frederic -
Show More
@@ -0,0 +1,2 b''
1 ((* set cell_style = 'simple_style.tplx' *))
2 ((* extends 'latex_article.tplx' *)) No newline at end of file
@@ -1,38 +1,38 b''
1 ((* extends 'latex_book.tplx' *))
1 ((* extends 'latex_report.tplx' *))
2 2
3 3 %===============================================================================
4 4 % Latex Sphinx Book
5 5 %===============================================================================
6 6
7 7 ((* block docclass *))
8 8 % Make sure that the sphinx doc style knows who it inherits from.
9 9 \def\sphinxdocclass{report}
10 10
11 11 % Declare the document class
12 12 \documentclass[letterpaper,10pt,english]{((( resources.sphinx.texinputs | posix_path )))/sphinxmanual}
13 13 ((* endblock docclass *))
14 14
15 15 ((* block packages *))
16 16 ((* block chstyle *))
17 17 \usepackage[Bjarne]{((( resources.sphinx.texinputs | posix_path )))/fncychap}
18 18 ((* endblock chstyle *))
19 19
20 20 \usepackage{((( resources.sphinx.texinputs | posix_path )))/sphinx}
21 21
22 22 ((( super() )))
23 23 ((* endblock packages *))
24 24
25 25 ((* block commands *))
26 26 ((( super() )))
27 27
28 28 % Override to specify your own logo
29 29 ((* block logo *))\newcommand{\sphinxlogo}{}((* endblock logo *))
30 30
31 31 % Make the index page of the document.
32 32 \makeindex
33 33
34 34 ((* endblock commands *))
35 35
36 36 % Work around to fix vertical spacing issues with the notebook style.
37 37 ((* block extra_input_spacing *))\vspace{-1\baselineskip}((* endblock extra_input_spacing *))
38 38 ((* block extra_output_spacing *))\vspace{-0.6\baselineskip}((* endblock extra_output_spacing *))
General Comments 0
You need to be logged in to leave comments. Login now