conf.py
Go to the documentation of this file.
00001 # -*- coding: utf-8 -*-
00002 
00003 # Copyright 2016 The Cartographer Authors
00004 #
00005 # Licensed under the Apache License, Version 2.0 (the "License");
00006 # you may not use this file except in compliance with the License.
00007 # You may obtain a copy of the License at
00008 #
00009 #      http://www.apache.org/licenses/LICENSE-2.0
00010 #
00011 # Unless required by applicable law or agreed to in writing, software
00012 # distributed under the License is distributed on an "AS IS" BASIS,
00013 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
00014 # See the License for the specific language governing permissions and
00015 # limitations under the License.
00016 
00017 # Cartographer documentation build configuration file, created by
00018 # sphinx-quickstart on Fri Jul  8 10:41:33 2016.
00019 #
00020 # This file is execfile()d with the current directory set to its
00021 # containing dir.
00022 #
00023 # Note that not all possible configuration values are present in this
00024 # autogenerated file.
00025 #
00026 # All configuration values have a default; values that are commented out
00027 # serve to show the default.
00028 
00029 import sys
00030 import os
00031 from datetime import datetime
00032 
00033 # If extensions (or modules to document with autodoc) are in another directory,
00034 # add these directories to sys.path here. If the directory is relative to the
00035 # documentation root, use os.path.abspath to make it absolute, like shown here.
00036 #sys.path.insert(0, os.path.abspath('.'))
00037 
00038 # -- General configuration ------------------------------------------------
00039 
00040 # If your documentation needs a minimal Sphinx version, state it here.
00041 #needs_sphinx = '1.0'
00042 
00043 # Add any Sphinx extension module names here, as strings. They can be
00044 # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
00045 # ones.
00046 extensions = [
00047     'sphinx.ext.todo',
00048     'sphinx.ext.mathjax',
00049 ]
00050 
00051 # Add any paths that contain templates here, relative to this directory.
00052 templates_path = ['_templates']
00053 
00054 # The suffix of source filenames.
00055 source_suffix = '.rst'
00056 
00057 # The encoding of source files.
00058 #source_encoding = 'utf-8-sig'
00059 
00060 # The master toctree document.
00061 master_doc = 'index'
00062 
00063 # General information about the project.
00064 project = u'Cartographer'
00065 copyright = u'{year} The Cartographer Authors'.format(year=datetime.now().year)
00066 
00067 # The version info for the project you're documenting, acts as replacement for
00068 # |version| and |release|, also used in various other places throughout the
00069 # built documents.
00070 #
00071 
00072 # The short X.Y version.
00073 #version = ''
00074 # The full version, including alpha/beta/rc tags.
00075 #release = ''
00076 
00077 # The language for content autogenerated by Sphinx. Refer to documentation
00078 # for a list of supported languages.
00079 #language = None
00080 
00081 # There are two options for replacing |today|: either, you set today to some
00082 # non-false value, then it is used:
00083 #today = ''
00084 # Else, today_fmt is used as the format for a strftime call.
00085 #today_fmt = '%B %d, %Y'
00086 
00087 # List of patterns, relative to source directory, that match files and
00088 # directories to ignore when looking for source files.
00089 exclude_patterns = []
00090 
00091 # The reST default role (used for this markup: `text`) to use for all
00092 # documents.
00093 #default_role = None
00094 
00095 # If true, '()' will be appended to :func: etc. cross-reference text.
00096 #add_function_parentheses = True
00097 
00098 # If true, the current module name will be prepended to all description
00099 # unit titles (such as .. function::).
00100 #add_module_names = True
00101 
00102 # If true, sectionauthor and moduleauthor directives will be shown in the
00103 # output. They are ignored by default.
00104 show_authors = False
00105 
00106 # The name of the Pygments (syntax highlighting) style to use.
00107 pygments_style = 'sphinx'
00108 
00109 # A list of ignored prefixes for module index sorting.
00110 #modindex_common_prefix = []
00111 
00112 # If true, keep warnings as "system message" paragraphs in the built documents.
00113 #keep_warnings = False
00114 
00115 # -- Options for HTML output ----------------------------------------------
00116 
00117 # The theme to use for HTML and HTML Help pages.  See the documentation for
00118 # a list of builtin themes.
00119 html_theme = 'default'
00120 
00121 # Theme options are theme-specific and customize the look and feel of a theme
00122 # further.  For a list of options available for each theme, see the
00123 # documentation.
00124 #html_theme_options = {}
00125 
00126 # Add any paths that contain custom themes here, relative to this directory.
00127 #html_theme_path = []
00128 
00129 # The name for this set of Sphinx documents.  If None, it defaults to
00130 # "<project> v<release> documentation".
00131 #html_title = None
00132 
00133 # A shorter title for the navigation bar.  Default is the same as html_title.
00134 #html_short_title = None
00135 
00136 # The name of an image file (relative to this directory) to place at the top
00137 # of the sidebar.
00138 #html_logo = None
00139 
00140 # The name of an image file (within the static path) to use as favicon of the
00141 # docs.  This file should be a Windows icon file (.ico) being 16x16 or 32x32
00142 # pixels large.
00143 #html_favicon = None
00144 
00145 # Add any paths that contain custom static files (such as style sheets) here,
00146 # relative to this directory. They are copied after the builtin static files,
00147 # so a file named "default.css" will overwrite the builtin "default.css".
00148 html_static_path = []
00149 
00150 # Add any extra paths that contain custom files (such as robots.txt or
00151 # .htaccess) here, relative to this directory. These files are copied
00152 # directly to the root of the documentation.
00153 #html_extra_path = []
00154 
00155 # If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
00156 # using the given strftime format.
00157 #html_last_updated_fmt = '%b %d, %Y'
00158 
00159 # If true, SmartyPants will be used to convert quotes and dashes to
00160 # typographically correct entities.
00161 #html_use_smartypants = True
00162 
00163 # Custom sidebar templates, maps document names to template names.
00164 #html_sidebars = {}
00165 
00166 # Additional templates that should be rendered to pages, maps page names to
00167 # template names.
00168 #html_additional_pages = {}
00169 
00170 # If false, no module index is generated.
00171 #html_domain_indices = True
00172 
00173 # If false, no index is generated.
00174 #html_use_index = True
00175 
00176 # If true, the index is split into individual pages for each letter.
00177 #html_split_index = False
00178 
00179 # If true, links to the reST sources are added to the pages.
00180 #html_show_sourcelink = True
00181 
00182 # If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
00183 #html_show_sphinx = True
00184 
00185 # If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
00186 #html_show_copyright = True
00187 
00188 # If true, an OpenSearch description file will be output, and all pages will
00189 # contain a <link> tag referring to it.  The value of this option must be the
00190 # base URL from which the finished HTML is served.
00191 #html_use_opensearch = ''
00192 
00193 # This is the file name suffix for HTML files (e.g. ".xhtml").
00194 #html_file_suffix = None
00195 
00196 # Output file base name for HTML help builder.
00197 htmlhelp_basename = 'Cartographerdoc'
00198 
00199 # -- Options for LaTeX output ---------------------------------------------
00200 
00201 latex_elements = {
00202     # The paper size ('letterpaper' or 'a4paper').
00203     #'papersize': 'letterpaper',
00204 
00205     # The font size ('10pt', '11pt' or '12pt').
00206     #'pointsize': '10pt',
00207 
00208     # Additional stuff for the LaTeX preamble.
00209     #'preamble': '',
00210 }
00211 
00212 # Grouping the document tree into LaTeX files. List of tuples
00213 # (source start file, target name, title,
00214 #  author, documentclass [howto, manual, or own class]).
00215 latex_documents = [
00216     ('index', 'Cartographer.tex', u'Cartographer Documentation',
00217      u'The Cartographer Authors', 'manual'),
00218 ]
00219 
00220 # The name of an image file (relative to this directory) to place at the top of
00221 # the title page.
00222 #latex_logo = None
00223 
00224 # For "manual" documents, if this is true, then toplevel headings are parts,
00225 # not chapters.
00226 #latex_use_parts = False
00227 
00228 # If true, show page references after internal links.
00229 #latex_show_pagerefs = False
00230 
00231 # If true, show URL addresses after external links.
00232 #latex_show_urls = False
00233 
00234 # Documents to append as an appendix to all manuals.
00235 #latex_appendices = []
00236 
00237 # If false, no module index is generated.
00238 #latex_domain_indices = True
00239 
00240 # -- Options for manual page output ---------------------------------------
00241 
00242 # One entry per manual page. List of tuples
00243 # (source start file, name, description, authors, manual section).
00244 man_pages = [
00245     ('index', 'cartographer', u'Cartographer Documentation',
00246      [u'The Cartographer Authors'], 1)
00247 ]
00248 
00249 # If true, show URL addresses after external links.
00250 #man_show_urls = False
00251 
00252 # -- Options for Texinfo output -------------------------------------------
00253 
00254 # Grouping the document tree into Texinfo files. List of tuples
00255 # (source start file, target name, title, author,
00256 #  dir menu entry, description, category)
00257 texinfo_documents = [
00258     ('index', 'Cartographer', u'Cartographer Documentation',
00259      u'The Cartographer Authors', 'Cartographer',
00260      'Cartographer is a system that provides real-time simultaneous '
00261      'localization and mapping (SLAM) in 2D and 3D across multiple platforms '
00262      'and sensor configurations.', 'Miscellaneous'),
00263 ]
00264 
00265 # Documents to append as an appendix to all manuals.
00266 #texinfo_appendices = []
00267 
00268 # If false, no module index is generated.
00269 #texinfo_domain_indices = True
00270 
00271 # How to display URL addresses: 'footnote', 'no', or 'inline'.
00272 #texinfo_show_urls = 'footnote'
00273 
00274 # If true, do not generate a @detailmenu in the "Top" node's menu.
00275 #texinfo_no_detailmenu = False


cartographer
Author(s): The Cartographer Authors
autogenerated on Thu May 9 2019 02:27:35