]> git.llucax.com Git - z.facultad/75.00/informe.git/blobdiff - source/conf.py
Hacer variables globales más evidentes en pseudo-código
[z.facultad/75.00/informe.git] / source / conf.py
index e589ed714c36aefaf5dfdb15b4af31d7217ab51e..c6e161e935c3dbcffc84b8a890f37ebff610ee6b 100644 (file)
@@ -22,7 +22,13 @@ sys.path.append(os.path.abspath('../ext'))
 
 # Add any Sphinx extension module names here, as strings. They can be extensions
 # coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
 
 # Add any Sphinx extension module names here, as strings. They can be extensions
 # coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
-extensions = ['graphviz', 'sphinx.ext.pngmath']
+extensions = [
+       'aafig',
+       'fig',
+       'vref',
+       'sphinx.ext.graphviz',
+       'sphinx.ext.pngmath',
+]
 
 # Add any paths that contain templates here, relative to this directory.
 templates_path = ['.templates']
 
 # Add any paths that contain templates here, relative to this directory.
 templates_path = ['.templates']
@@ -83,6 +89,9 @@ exclude_trees = []
 # The name of the Pygments (syntax highlighting) style to use.
 pygments_style = 'sphinx'
 
 # The name of the Pygments (syntax highlighting) style to use.
 pygments_style = 'sphinx'
 
+# The default language to highlight source code in. The default is 'python'.
+highlight_language = 'd'
+
 # A list of ignored prefixes for module index sorting.
 #modindex_common_prefix = []
 
 # A list of ignored prefixes for module index sorting.
 #modindex_common_prefix = []
 
@@ -167,7 +176,7 @@ htmlhelp_basename = 'tesisdoc'
 latex_paper_size = 'a4'
 
 # The font size ('10pt', '11pt' or '12pt').
 latex_paper_size = 'a4'
 
 # The font size ('10pt', '11pt' or '12pt').
-latex_font_size = '10pt'
+latex_font_size = '11pt'
 
 # Grouping the document tree into LaTeX files. List of tuples
 # (source start file, target name, title, author, documentclass [howto/manual]).
 
 # Grouping the document tree into LaTeX files. List of tuples
 # (source start file, target name, title, author, documentclass [howto/manual]).
@@ -185,7 +194,11 @@ latex_logo = 'fiuba.png'
 #latex_use_parts = False
 
 # Additional stuff for the LaTeX preamble.
 #latex_use_parts = False
 
 # Additional stuff for the LaTeX preamble.
-latex_preamble = '\setcounter{tocdepth}{3}'
+latex_preamble = r'''
+\usepackage[draft]{varioref} % XXX: breaks PDF index, use [final] when done
+\usepackage{subfigure}
+\setcounter{tocdepth}{2}
+'''
 
 # Documents to append as an appendix to all manuals.
 #latex_appendices = []
 
 # Documents to append as an appendix to all manuals.
 #latex_appendices = []
@@ -193,3 +206,9 @@ latex_preamble = '\setcounter{tocdepth}{3}'
 # If false, no module index is generated.
 latex_use_modindex = False
 
 # If false, no module index is generated.
 latex_use_modindex = False
 
+# aafig default options
+aafig_default_options = dict(
+  proportional = True,
+  aspect       = 0.5,
+)
+