# -*- coding: utf-8 -*-1#2# Sage documentation build configuration file, created by3# sphinx-quickstart on Thu Aug 21 20:15:55 2008.4#5# This file is execfile()d with the current directory set to its containing6# dir.7#8# The contents of this file are pickled, so don't put values in the namespace9# that aren't pickleable (module imports are okay, they're removed10# automatically).11#12# All configuration values have a default; values that are commented out13# serve to show the default.1415import os16import sys17sys.path.append(os.environ["SAGE_DOC"])18from common.conf import *1920# General information about the project.21project = u"Thematic Tutorials"2223# The name for this set of Sphinx documents. If None, it defaults to24# "<project> v<release> documentation".25html_title = project + " v" + release2627# Output file base name for HTML help builder.28htmlhelp_basename = "thematic_tutorials"2930# mathfrak isn't defined in jsMath, so using it gives errors. The31# following line turns it into bold face only when using jsMath, thus32# avoiding the errors, while keeping the nice mathfrak fonts when not33# using jsMath.34try:35html_theme_options['jsmath_macros'].append("mathfrak : ['\\\\mathbf{#1}', 1]")36except KeyError:37html_theme_options['jsmath_macros'] = ["mathfrak : ['\\\\mathbf{#1}', 1]"]3839# Grouping the document tree into LaTeX files. List of tuples40# (source start file, target name, title, author,41# document class [howto/manual]).42latex_documents = [(43"index", "thematic_tutorials.tex", u'Thematic Tutorials',44u'The Sage Development Team', 'manual'),45]4647show_authors = True484950