# nodoctest1# Sage Constructions documentation build configuration file, created by2# sphinx-quickstart on Fri Aug 22 12:10:42 2008.3#4# This file is execfile()d with the current directory set to its containing dir.5#6# The contents of this file are pickled, so don't put values in the namespace7# that aren't pickleable (module imports are okay, they're removed automatically).8#9# All configuration values have a default; values that are commented out10# serve to show the default.1112from sage_docbuild.conf import release13from sage_docbuild.conf import * # NOQA1415# Add any paths that contain custom static files (such as style sheets),16# relative to this directory to html_static_path. They are copied after the17# builtin static files, so a file named "default.css" will overwrite the18# builtin "default.css". html_common_static_path imported from sage_docbuild.conf19# contains common paths.20html_static_path = [] + html_common_static_path2122# Add small view/edit buttons.23html_theme_options.update({24'source_view_link': os.path.join(source_repository, 'blob/develop/src/doc/zh/constructions', '{filename}'),25'source_edit_link': os.path.join(source_repository, 'edit/develop/src/doc/zh/constructions', '{filename}'),26})2728# General information about the project.29project = "构建指南"30name = 'constructions'31language = "zh_CN"3233# The LaTeX engine to build the docs in Chinese.34# https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-latex_engine35latex_engine = 'xelatex'3637# The name for this set of Sphinx documents. If None, it defaults to38# "<project> v<release> documentation".39html_title = project + " v" + release4041# Output file base name for HTML help builder.42htmlhelp_basename = name4344# Grouping the document tree into LaTeX files. List of tuples45# (source start file, target name, title, author, document class [howto/manual]).46latex_documents = [47('index', name + '.tex', project,48'Sage 开发团队', 'manual'),49]505152