Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemath
GitHub Repository: sagemath/sagesmc
Path: blob/master/src/doc/en/thematic_tutorials/conf.py
8815 views
1
# -*- coding: utf-8 -*-
2
#
3
# Sage documentation build configuration file, created by
4
# sphinx-quickstart on Thu Aug 21 20:15:55 2008.
5
#
6
# This file is execfile()d with the current directory set to its containing
7
# dir.
8
#
9
# The contents of this file are pickled, so don't put values in the namespace
10
# that aren't pickleable (module imports are okay, they're removed
11
# automatically).
12
#
13
# All configuration values have a default; values that are commented out
14
# serve to show the default.
15
16
import os
17
import sys
18
sys.path.append(os.environ["SAGE_DOC"])
19
from common.conf import *
20
21
# General information about the project.
22
project = u"Thematic Tutorials"
23
24
# The name for this set of Sphinx documents. If None, it defaults to
25
# "<project> v<release> documentation".
26
html_title = project + " v" + release
27
28
# Output file base name for HTML help builder.
29
htmlhelp_basename = "thematic_tutorials"
30
31
# Grouping the document tree into LaTeX files. List of tuples
32
# (source start file, target name, title, author,
33
# document class [howto/manual]).
34
latex_documents = [(
35
"index", "thematic_tutorials.tex", u'Thematic Tutorials',
36
u'The Sage Development Team', 'manual'),
37
]
38
39
show_authors = True
40
41