##// END OF EJS Templates
Added option to remove title and center output
Jonathan Frederic -
Show More
@@ -132,10 +132,13 b' Note: For best display, use latex syntax highlighting. =))'
132 132
133 133 % Start of the document
134 134 \begin{document}
135 \maketitle
135
136 ((* if resources.sphinx.header *))
137 \maketitle
138 ((* endif *))
136 139
137 140 ((* block toc *))
138 \tableofcontents
141 \tableofcontents
139 142 ((* endblock toc *))
140 143
141 144 ((* endblock bodyBegin *))((( super() )))((* block bodyEnd *))
@@ -313,9 +316,7 b' Note: For best display, use latex syntax highlighting. =))'
313 316 ((*- endblock -*))
314 317
315 318 ((*- block data_latex -*))
316 \begin{alltt}
317 ((( output.latex )))
318 \end{alltt}
319 ((( custom_verbatim(output.latex) )))
319 320 ((*- endblock -*))
320 321
321 322 %==============================================================================
@@ -363,6 +364,14 b' Note: For best display, use latex syntax highlighting. =))'
363 364 \end{alltt}
364 365 ((*- endmacro *))
365 366
367 % Name: center_output
368 % Purpose: This macro centers the output if the output centering is enabled.
369 ((* macro center_output(text) -*))
370 ((* if resources.sphinx.center_output *)){\centering ((* endif *))((( text | wrap(wrap_size) )))
371 ((* if resources.sphinx.center_output *))
372 }((* endif *))
373 ((*- endmacro *))
374
366 375 % Name: insert_graphics
367 376 % Purpose: This macro will insert an image in the latex document given a path.
368 377 ((* macro insert_graphics(path) -*))
General Comments 0
You need to be logged in to leave comments. Login now