]> git.llucax.com Git - z.facultad/75.00/informe.git/blobdiff - source/conf.py
Aclarar qué variables son globales en copying collector
[z.facultad/75.00/informe.git] / source / conf.py
index 30dec2573f6c919e7d9d897075583353dd73e7b9..d31a871ed40cc053bbb77f7732c4d938daf5c052 100644 (file)
@@ -16,7 +16,7 @@ import sys, os
 # If extensions (or modules to document with autodoc) are in another directory,
 # add these directories to sys.path here. If the directory is relative to the
 # documentation root, use os.path.abspath to make it absolute, like shown here.
 # If extensions (or modules to document with autodoc) are in another directory,
 # add these directories to sys.path here. If the directory is relative to the
 # documentation root, use os.path.abspath to make it absolute, like shown here.
-sys.path.append(os.path.abspath('../ext'))
+sys.path.insert(0, os.path.abspath('../ext'))
 
 # -- General configuration -----------------------------------------------------
 
 
 # -- General configuration -----------------------------------------------------
 
@@ -24,8 +24,8 @@ sys.path.append(os.path.abspath('../ext'))
 # coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
 extensions = [
        'aafig',
 # coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
 extensions = [
        'aafig',
-       'fig',
-       'ftable',
+       'flt',
+       'fixdl',
        'vref',
        'pcodehl',
        'sphinx.ext.graphviz',
        'vref',
        'pcodehl',
        'sphinx.ext.graphviz',
@@ -198,8 +198,15 @@ latex_logo = None
 # Additional stuff for the LaTeX preamble.
 latex_preamble = r'''
 \usepackage{epigraph}
 # Additional stuff for the LaTeX preamble.
 latex_preamble = r'''
 \usepackage{epigraph}
-\usepackage[final]{varioref} % XXX: breaks PDF index, use [final] when done
 \usepackage{subfig}
 \usepackage{subfig}
+
+% Se hackea el Makefile para hacer el usepackage de varioref antes del
+% usepackage{sphinx} porque si se lo hace despues se rompe el indice del PDF
+% (en realidad tiene que estar antes del usepackage del hyperref, que se carga
+% en el paquete sphinx). Para cambiar entre draft/final hay que modificar el
+% Makefile.
+%\usepackage[final]{varioref} % XXX: breaks PDF index, use [final] when done
+
 % Relaja restricciones de LaTeX para floats, ver:
 % http://mintaka.sdsu.edu/GF/bibliog/latex/floats.html
 % http://www.tex.ac.uk/cgi-bin/texfaq2html?label=floats
 % Relaja restricciones de LaTeX para floats, ver:
 % http://mintaka.sdsu.edu/GF/bibliog/latex/floats.html
 % http://www.tex.ac.uk/cgi-bin/texfaq2html?label=floats
@@ -210,10 +217,24 @@ latex_preamble = r'''
 \setcounter{topnumber}{1}
 \setcounter{bottomnumber}{1}
 \setcounter{totalnumber}{4}
 \setcounter{topnumber}{1}
 \setcounter{bottomnumber}{1}
 \setcounter{totalnumber}{4}
+
 % Profundida maxima de tabla de contenidos
 \setcounter{tocdepth}{2}
 % Profundida maxima de tabla de contenidos
 \setcounter{tocdepth}{2}
+
+% Color de fondo de codigo
+\definecolor{VerbatimColor}{rgb}{0.95,0.95,0.95}
+\definecolor{VerbatimBorderColor}{rgb}{0.75,0.75,0.75}
+
+% Definiciones para PDF
+\hypersetup{
+       pdftitle={Recolecci\'on de basura en D},
+       pdfauthor={Leandro Mat\'ias Lucarella},
+       pdfsubject={Tesis de Ingenier\'ia en Inform\'atica, FIUBA},
+       pdfkeywords={gc}{d}{cdgc}{fork}{concurrent}
+}
 '''
 
 '''
 
+
 # Documents to append as an appendix to all manuals.
 #latex_appendices = []
 
 # Documents to append as an appendix to all manuals.
 #latex_appendices = []
 
@@ -226,3 +247,16 @@ aafig_default_options = dict(
   aspect       = 0.5,
 )
 
   aspect       = 0.5,
 )
 
+
+# Para imprimir
+################
+if True:
+       pygments_style = 'pygsty.PrintStyle'
+       latex_preamble += r'''
+       % Colores para imprimir
+       \definecolor{TitleColor}{rgb}{0,0,0}
+       \definecolor{InnerLinkColor}{rgb}{0,0,0}
+       \definecolor{OuterLinkColor}{rgb}{0,0,0}
+       \hypersetup{colorlinks=false}
+       '''
+