Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemath
GitHub Repository: sagemath/sage
Path: blob/develop/src/doc/ca/intro/conf.py
4086 views
1
# nodoctest
2
# Sage documentation build configuration file, created by
3
# sphinx-quickstart on Thu Aug 21 20:15:55 2008.
4
#
5
# This file is execfile()d with the current directory set to its containing dir.
6
#
7
# The contents of this file are pickled, so don't put values in the namespace
8
# that aren't pickleable (module imports are okay, they're removed automatically).
9
#
10
# All configuration values have a default; values that are commented out
11
# serve to show the default.
12
13
from sage_docbuild.conf import release
14
from sage_docbuild.conf import * # NOQA
15
16
# Add any paths that contain custom static files (such as style sheets),
17
# relative to this directory to html_static_path. They are copied after the
18
# builtin static files, so a file named "default.css" will overwrite the
19
# builtin "default.css". html_common_static_path imported from sage_docbuild.conf
20
# contains common paths.
21
html_static_path = [] + html_common_static_path
22
23
# Add small view/edit buttons.
24
html_theme_options.update({
25
'source_view_link': os.path.join(source_repository, 'blob/develop/src/doc/ca/intro', '{filename}'),
26
'source_edit_link': os.path.join(source_repository, 'edit/develop/src/doc/ca/intro', '{filename}'),
27
})
28
29
# General information about the project.
30
project = "Introducció de Sage"
31
32
# The name for this set of Sphinx documents. Do not include release info.
33
html_title = project
34
html_short_title = project
35
36
# Output file base name for HTML help builder.
37
htmlhelp_basename = 'TutorialdeSage'
38
39
# Grouping the document tree into LaTeX files. List of tuples
40
# (source start file, target name, title, author, document class [howto/manual]).
41
latex_documents = [
42
('index', 'TutorialdeSage.tex', 'Introducció de Sage',
43
'The Sage Development Team', 'manual'),
44
]
45
46