Show More
@@ -1,128 +1,136 b'' | |||||
1 | ((============================================================================ |
|
1 | ((============================================================================ | |
2 | NBConvert Sphinx-Latex Template |
|
2 | NBConvert Sphinx-Latex Template | |
3 |
|
3 | |||
4 | Purpose: Allow export of PDF friendly Latex inspired by Sphinx. Most of the |
|
4 | Purpose: Allow export of PDF friendly Latex inspired by Sphinx. Most of the | |
5 | template is derived directly from Sphinx source. |
|
5 | template is derived directly from Sphinx source. | |
6 |
|
6 | |||
7 | Inheritance: null>display_priority>latex_base |
|
7 | Inheritance: null>display_priority>latex_base | |
8 |
|
8 | |||
9 | ==========================================================================)) |
|
9 | ==========================================================================)) | |
10 |
|
10 | |||
11 | ((*- extends 'latex_base.tplx' -*)) |
|
11 | ((*- extends 'latex_base.tplx' -*)) | |
12 |
|
12 | |||
13 | % Header, overrides base |
|
13 | % Header, overrides base | |
14 | ((* block header *)) |
|
14 | ((* block header *)) | |
15 |
|
15 | |||
16 | % Make sure that the sphinx doc style knows who it inherits from. |
|
16 | % Make sure that the sphinx doc style knows who it inherits from. | |
17 | \def\sphinxdocclass{(((parentdocumentclass)))} |
|
17 | \def\sphinxdocclass{(((parentdocumentclass)))} | |
18 |
|
18 | |||
19 | % Declare the document class |
|
19 | % Declare the document class | |
20 | \documentclass[letterpaper,10pt,english]{sphinx(((documentclass)))} |
|
20 | \documentclass[letterpaper,10pt,english]{sphinx(((documentclass)))} | |
21 |
|
21 | |||
22 | % Imports |
|
22 | % Imports | |
23 | \usepackage[utf8]{inputenc} |
|
23 | \usepackage[utf8]{inputenc} | |
24 | \DeclareUnicodeCharacter{00A0}{\\nobreakspace} |
|
24 | \DeclareUnicodeCharacter{00A0}{\\nobreakspace} | |
25 | \usepackage[T1]{fontenc} |
|
25 | \usepackage[T1]{fontenc} | |
26 | \usepackage{babel} |
|
26 | \usepackage{babel} | |
27 | \usepackage{times} |
|
27 | \usepackage{times} | |
28 | \usepackage{import} |
|
28 | \usepackage{import} | |
29 | \usepackage[Bjarne]{fncychap} |
|
29 | \usepackage[Bjarne]{fncychap} | |
30 | \usepackage{longtable} |
|
30 | \usepackage{longtable} | |
31 | \usepackage{sphinx} |
|
31 | \usepackage{sphinx} | |
32 | \usepackage{multirow} |
|
32 | \usepackage{multirow} | |
33 |
|
33 | |||
34 | % Document level variables |
|
34 | % Document level variables | |
35 | \title{((( nb.metadata.name )))} |
|
35 | \title{((( nb.metadata.name )))} | |
36 | \date{\today} |
|
36 | \date{\today} | |
37 | \release{} |
|
37 | \release{} | |
38 | \author{Unknown Author} |
|
38 | \author{Unknown Author} | |
39 | \newcommand{\sphinxlogo}{} |
|
39 | \newcommand{\sphinxlogo}{} | |
40 | \renewcommand{\releasename}{Release} |
|
40 | \renewcommand{\releasename}{Release} | |
41 | \makeindex |
|
41 | \makeindex | |
42 |
|
42 | |||
43 |
|
43 | |||
44 | ((* block sphinxheader *))((* endblock sphinxheader *)) |
|
44 | ((* block sphinxheader *))((* endblock sphinxheader *)) | |
45 |
|
45 | |||
46 | ((* endblock header *)) |
|
46 | ((* endblock header *)) | |
47 |
|
47 | |||
48 | % Body |
|
48 | % Body | |
49 | ((* block bodyBegin *)) |
|
49 | ((* block bodyBegin *)) | |
50 |
|
50 | |||
51 | % Start of the document |
|
51 | % Start of the document | |
52 | \begin{document} |
|
52 | \begin{document} | |
53 | \maketitle |
|
53 | \maketitle | |
54 | \tableofcontents |
|
54 | \tableofcontents | |
55 | ((* endblock bodyBegin *)) |
|
55 | ((* endblock bodyBegin *)) | |
56 | ((* block bodyEnd *)) |
|
56 | ((* block bodyEnd *)) | |
57 |
|
57 | |||
58 |
|
58 | |||
59 | \renewcommand{\indexname}{Index} |
|
59 | \renewcommand{\indexname}{Index} | |
60 | \printindex |
|
60 | \printindex | |
61 | \end{document} |
|
61 | \end{document} | |
62 | ((* endblock bodyEnd *)) |
|
62 | ((* endblock bodyEnd *)) | |
63 |
|
63 | |||
64 | % Footer |
|
64 | % Footer | |
65 | ((* block footer *)) |
|
65 | ((* block footer *)) | |
66 | ((* endblock footer *)) |
|
66 | ((* endblock footer *)) | |
67 |
|
67 | |||
68 |
((*- block |
|
68 | ((*- block headingcell-*)) | |
69 | ((( cell.source))) |
|
69 | ||
70 |
((*- if cell. |
|
70 | ((*- if cell.level == 1 -*)) | |
71 |
|
71 | \part | ||
72 | ((*- block codecell scoped -*)) |
|
72 | ((*- elif cell.level == 2 -*)) | |
73 | ((*- block input_group -*)) |
|
73 | \chapter | |
74 | ((*- block in_prompt -*))((*- endblock in_prompt -*)) |
|
74 | ((*- elif cell.level == 3 -*)) | |
75 | ((*- block input -*))((*- endblock input -*)) |
|
75 | \section | |
76 | ((*- endblock input_group -*)) |
|
76 | ((*- elif cell.level == 4 -*)) | |
77 | ((*- if cell.outputs -*)) |
|
77 | \subsection | |
78 | ((*- block output_group -*)) |
|
78 | ((*- elif cell.level == 5 -*)) | |
79 | ((*- block output_prompt -*))((*- endblock output_prompt -*)) |
|
79 | \subsubsection | |
80 | ((*- block outputs -*)) |
|
80 | ((*- elif cell.level == 6 -*)) | |
81 | ((*- for output in cell.outputs -*)) |
|
81 | \paragraph | |
82 | ((*- if output.output_type in ['pyout'] -*)) |
|
82 | ((*- endif -*)){((( cell.source )))} | |
83 | ((*- block pyout scoped -*))((*- endblock pyout -*)) |
|
83 | ((*- endblock headingcell -*)) | |
84 | ((*- elif output.output_type in ['stream'] -*)) |
|
84 | ||
85 | ((*- block stream scoped -*)) |
|
85 | ((*- block codecell scoped -*)) | |
86 | ((*- if output.stream in ['stdout'] -*)) |
|
86 | ((*- block input_group -*)) | |
87 | ((*- block stream_stdout scoped -*)) |
|
87 | ((*- block in_prompt -*))((*- endblock in_prompt -*)) | |
88 | ((*- endblock stream_stdout -*)) |
|
88 | ((*- block input -*))((*- endblock input -*)) | |
89 | ((*- elif output.stream in ['stderr'] -*)) |
|
89 | ((*- endblock input_group -*)) | |
90 | ((*- block stream_stderr scoped -*)) |
|
90 | ((*- if cell.outputs -*)) | |
91 | ((*- endblock stream_stderr -*)) |
|
91 | ((*- block output_group -*)) | |
92 | ((*- endif -*)) |
|
92 | ((*- block output_prompt -*))((*- endblock output_prompt -*)) | |
93 |
|
|
93 | ((*- block outputs -*)) | |
94 |
|
|
94 | ((*- for output in cell.outputs -*)) | |
95 | ((*- block display_data scoped -*)) |
|
95 | ((*- if output.output_type in ['pyout'] -*)) | |
96 |
|
|
96 | ((*- block pyout scoped -*))((*- endblock pyout -*)) | |
97 | ((*- endblock data_priority -*)) |
|
97 | ((*- elif output.output_type in ['stream'] -*)) | |
98 |
|
|
98 | ((*- block stream scoped -*)) | |
99 |
((*- |
|
99 | ((*- if output.stream in ['stdout'] -*)) | |
100 |
((*- block |
|
100 | ((*- block stream_stdout scoped -*)) | |
101 |
((*- |
|
101 | ((*- endblock stream_stdout -*)) | |
102 | ((*- block traceback_line scoped -*))((*- endblock traceback_line -*)) |
|
102 | ((*- elif output.stream in ['stderr'] -*)) | |
103 |
((*- |
|
103 | ((*- block stream_stderr scoped -*)) | |
104 |
((*- endblock |
|
104 | ((*- endblock stream_stderr -*)) | |
105 | ((*- endif -*)) |
|
105 | ((*- endif -*)) | |
|
106 | ((*- endblock stream -*)) | |||
|
107 | ((*- elif output.output_type in ['display_data'] -*)) | |||
|
108 | ((*- block display_data scoped -*)) | |||
|
109 | ((*- block data_priority scoped -*)) | |||
|
110 | ((*- endblock data_priority -*)) | |||
|
111 | ((*- endblock display_data -*)) | |||
|
112 | ((*- elif output.output_type in ['pyerr'] -*)) | |||
|
113 | ((*- block pyerr scoped -*)) | |||
|
114 | ((*- for line in output.traceback -*)) | |||
|
115 | ((*- block traceback_line scoped -*))((*- endblock traceback_line -*)) | |||
106 | ((*- endfor -*)) |
|
116 | ((*- endfor -*)) | |
107 |
((*- endblock |
|
117 | ((*- endblock pyerr -*)) | |
108 |
((*- end |
|
118 | ((*- endif -*)) | |
109 |
((*- end |
|
119 | ((*- endfor -*)) | |
110 |
((*- endblock |
|
120 | ((*- endblock outputs -*)) | |
111 | ((*- elif cell.type in ['markdown'] -*)) |
|
121 | ((*- endblock output_group -*)) | |
112 |
|
122 | ((*- endif -*)) | ||
113 |
|
|
123 | ((*- endblock codecell -*)) | |
114 | ((*- endblock markdowncell -*)) |
|
124 | ||
115 | ((*- elif cell.type in ['heading'] -*)) |
|
125 | ((*- block markdowncell scoped-*)) | |
116 |
|
126 | %TODO: Get this working! | ||
117 |
|
|
127 | ((*- endblock markdowncell -*)) | |
118 | ((*- endblock headingcell -*)) |
|
128 | ||
119 | ((*- elif cell.type in ['raw'] -*)) |
|
129 | ||
120 |
|
130 | ((*- block rawcell scoped-*)) | ||
121 | ((*- block rawcell scoped-*)) |
|
131 | ||
122 |
|
|
132 | ((*- endblock rawcell -*)) | |
123 | ((*- else -*)) |
|
133 | ||
124 |
|
134 | ((*- block unknowncell scoped-*)) | ||
125 | ((*- block unknowncell scoped-*)) |
|
135 | ||
126 |
|
|
136 | ((*- endblock unknowncell -*)) | |
127 | ((*- endif -*)) |
|
|||
128 | ((*- endblock any_cell -*)) |
|
General Comments 0
You need to be logged in to leave comments.
Login now