##// 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 % Latex Sphinx Book
4 % Latex Sphinx Book
5 %===============================================================================
5 %===============================================================================
6
6
7 ((* block docclass *))
7 ((* block docclass *))
8 % Make sure that the sphinx doc style knows who it inherits from.
8 % Make sure that the sphinx doc style knows who it inherits from.
9 \def\sphinxdocclass{report}
9 \def\sphinxdocclass{report}
10
10
11 % Declare the document class
11 % Declare the document class
12 \documentclass[letterpaper,10pt,english]{((( resources.sphinx.texinputs | posix_path )))/sphinxmanual}
12 \documentclass[letterpaper,10pt,english]{((( resources.sphinx.texinputs | posix_path )))/sphinxmanual}
13 ((* endblock docclass *))
13 ((* endblock docclass *))
14
14
15 ((* block packages *))
15 ((* block packages *))
16 ((* block chstyle *))
16 ((* block chstyle *))
17 \usepackage[Bjarne]{((( resources.sphinx.texinputs | posix_path )))/fncychap}
17 \usepackage[Bjarne]{((( resources.sphinx.texinputs | posix_path )))/fncychap}
18 ((* endblock chstyle *))
18 ((* endblock chstyle *))
19
19
20 \usepackage{((( resources.sphinx.texinputs | posix_path )))/sphinx}
20 \usepackage{((( resources.sphinx.texinputs | posix_path )))/sphinx}
21
21
22 ((( super() )))
22 ((( super() )))
23 ((* endblock packages *))
23 ((* endblock packages *))
24
24
25 ((* block commands *))
25 ((* block commands *))
26 ((( super() )))
26 ((( super() )))
27
27
28 % Override to specify your own logo
28 % Override to specify your own logo
29 ((* block logo *))\newcommand{\sphinxlogo}{}((* endblock logo *))
29 ((* block logo *))\newcommand{\sphinxlogo}{}((* endblock logo *))
30
30
31 % Make the index page of the document.
31 % Make the index page of the document.
32 \makeindex
32 \makeindex
33
33
34 ((* endblock commands *))
34 ((* endblock commands *))
35
35
36 % Work around to fix vertical spacing issues with the notebook style.
36 % Work around to fix vertical spacing issues with the notebook style.
37 ((* block extra_input_spacing *))\vspace{-1\baselineskip}((* endblock extra_input_spacing *))
37 ((* block extra_input_spacing *))\vspace{-1\baselineskip}((* endblock extra_input_spacing *))
38 ((* block extra_output_spacing *))\vspace{-0.6\baselineskip}((* endblock extra_output_spacing *))
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