Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemath
GitHub Repository: sagemath/sagelib
Path: blob/master/doc/en/thematic_tutorials/conf.py
6922 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
# mathfrak isn't defined in jsMath, so using it gives errors. The
32
# following line turns it into bold face only when using jsMath, thus
33
# avoiding the errors, while keeping the nice mathfrak fonts when not
34
# using jsMath.
35
try:
36
html_theme_options['jsmath_macros'].append("mathfrak : ['\\\\mathbf{#1}', 1]")
37
except KeyError:
38
html_theme_options['jsmath_macros'] = ["mathfrak : ['\\\\mathbf{#1}', 1]"]
39
40
# Grouping the document tree into LaTeX files. List of tuples
41
# (source start file, target name, title, author,
42
# document class [howto/manual]).
43
latex_documents = [(
44
"index", "thematic_tutorials.tex", u'Thematic Tutorials',
45
u'The Sage Development Team', 'manual'),
46
]
47
48
show_authors = True
49
50