Commit aab83222 aab8322264d4e5cbf38aa3d872a113c81f38255b by Mickaël Andrieu

Configure Latex Generation for a future PDF Documentation

1 parent 76b7f73f
...@@ -184,10 +184,10 @@ htmlhelp_basename = 'casper-docs' ...@@ -184,10 +184,10 @@ htmlhelp_basename = 'casper-docs'
184 184
185 latex_elements = { 185 latex_elements = {
186 # The paper size ('letterpaper' or 'a4paper'). 186 # The paper size ('letterpaper' or 'a4paper').
187 #'papersize': 'letterpaper', 187 'papersize': 'letterpaper',
188 188
189 # The font size ('10pt', '11pt' or '12pt'). 189 # The font size ('10pt', '11pt' or '12pt').
190 #'pointsize': '10pt', 190 'pointsize': '10pt',
191 191
192 # Additional stuff for the LaTeX preamble. 192 # Additional stuff for the LaTeX preamble.
193 #'preamble': '', 193 #'preamble': '',
...@@ -195,9 +195,10 @@ latex_elements = { ...@@ -195,9 +195,10 @@ latex_elements = {
195 195
196 # Grouping the document tree into LaTeX files. List of tuples 196 # Grouping the document tree into LaTeX files. List of tuples
197 # (source start file, target name, title, author, documentclass [howto/manual]). 197 # (source start file, target name, title, author, documentclass [howto/manual]).
198 # latex_documents = [ 198 latex_documents = [
199 # (), 199 ('index', 'casperjs.tex', 'CasperJs Documentation',
200 # ] 200 'Nicolas Perriault', 'manual'),
201 ]
201 202
202 # The name of an image file (relative to this directory) to place at the top of 203 # The name of an image file (relative to this directory) to place at the top of
203 # the title page. 204 # the title page.
......