|
23 | 23 |
|
24 | 24 | # Add any Sphinx extension module names here, as strings. They can be extensions |
25 | 25 | # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. |
26 | | -extensions = ['sphinx.ext.pngmath', 'sphinx.ext.autodoc', 'only_directives', |
| 26 | +extensions = ['sphinx.ext.pngmath', 'sphinx.ext.autodoc', |
27 | 27 | 'ipython_console_highlighting', 'plot_directive', 'numpydoc', |
28 | 28 | 'docscrape', 'docscrape_sphinx', 'autosummary'] |
29 | 29 |
|
|
59 | 59 | # Else, today_fmt is used as the format for a strftime call. |
60 | 60 | today_fmt = '%B %d, %Y' |
61 | 61 |
|
| 62 | +# List of directories, relative to source directory, that shouldn't be searched |
| 63 | +# for source files. |
| 64 | +exclude_trees = ['_build'] |
| 65 | + |
| 66 | +# The reST default role (used for this markup: `text`) to use for all documents. |
| 67 | +#default_role = None |
| 68 | + |
62 | 69 | # List of documents that shouldn't be included in the build. |
63 | 70 | #unused_docs = [] |
64 | 71 |
|
|
74 | 81 | #show_authors = False |
75 | 82 |
|
76 | 83 | # The name of the Pygments (syntax highlighting) style to use. |
77 | | -pygments_style = 'friendly' |
| 84 | +pygments_style = 'sphinx' |
| 85 | + |
| 86 | +# A list of ignored prefixes for module index sorting. |
| 87 | +#modindex_common_prefix = [] |
78 | 88 |
|
79 | 89 |
|
80 | 90 | # Options for HTML output |
|
83 | 93 | # The style sheet to use for HTML and HTML Help pages. A file of that name |
84 | 94 | # must exist either in Sphinx' static/ path, or in one of the custom paths |
85 | 95 | # given in html_static_path. |
86 | | -html_style = 'sphinxdoc.css' |
| 96 | +html_theme = 'sphinxdoc' |
| 97 | + |
| 98 | +# Theme options are theme-specific and customize the look and feel of a theme |
| 99 | +# further. For a list of options available for each theme, see the |
| 100 | +# documentation. |
| 101 | +#html_theme_options = {} |
| 102 | + |
| 103 | +# Add any paths that contain custom themes here, relative to this directory. |
| 104 | +#html_theme_path = [] |
| 105 | + |
| 106 | +# The name for this set of Sphinx documents. If None, it defaults to |
| 107 | +# "<project> v<release> documentation". |
| 108 | +#html_title = None |
| 109 | + |
| 110 | +# A shorter title for the navigation bar. Default is the same as html_title. |
| 111 | +#html_short_title = None |
| 112 | + |
| 113 | +# The name of an image file (relative to this directory) to place at the top |
| 114 | +# of the sidebar. |
| 115 | +#html_logo = None |
| 116 | + |
| 117 | +# The name of an image file (within the static path) to use as favicon of the |
| 118 | +# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 |
| 119 | +# pixels large. |
| 120 | +#html_favicon = None |
87 | 121 |
|
88 | 122 | # Add any paths that contain custom static files (such as style sheets) here, |
89 | 123 | # relative to this directory. They are copied after the builtin static files, |
|
105 | 139 | # template names. |
106 | 140 | html_additional_pages = {'index': 'index.html'} |
107 | 141 |
|
| 142 | +# If false, no module index is generated. |
| 143 | +#html_use_modindex = True |
| 144 | + |
| 145 | +# If false, no index is generated. |
| 146 | +#html_use_index = True |
| 147 | + |
| 148 | +# If true, the index is split into individual pages for each letter. |
| 149 | +#html_split_index = False |
| 150 | + |
| 151 | +# If true, links to the reST sources are added to the pages. |
| 152 | +#html_show_sourcelink = True |
| 153 | + |
108 | 154 | # If true, an OpenSearch description file will be output, and all pages will |
109 | 155 | # contain a <link> tag referring to it. |
110 | 156 | html_use_opensearch = 'False' |
|
133 | 179 | #latex_logo = '_static/sphinx.png' |
134 | 180 |
|
135 | 181 | # Additional stuff for the LaTeX preamble. |
136 | | -latex_elements = {'fontpkg': '\\usepackage{pslatex}'} |
| 182 | +latex_preamble = {'fontpkg': '\\usepackage{pslatex}'} |
137 | 183 |
|
138 | 184 | # Documents to append as an appendix to all manuals. |
139 | 185 | latex_appendices = [] |
|
0 commit comments