xref: /libCEED/doc/sphinx/source/conf.py (revision 751b7b16b4c6f23d06daa251e4825bc6151d97db)
1#!/usr/bin/env python3
2# -*- coding: utf-8 -*-
3#
4# libCEED documentation build configuration file, created by
5# sphinx-quickstart on Tue Jan  7 18:59:28 2020.
6#
7# This file is execfile()d with the current directory set to its
8# containing dir.
9#
10# Note that not all possible configuration values are present in this
11# autogenerated file.
12#
13# All configuration values have a default; values that are commented out
14# serve to show the default.
15
16# If extensions (or modules to document with autodoc) are in another directory,
17# add these directories to sys.path here. If the directory is relative to the
18# documentation root, use os.path.abspath to make it absolute, like shown here.
19#
20# import os
21# import sys
22# sys.path.insert(0, os.path.abspath('.'))
23import glob
24import shutil
25import sys
26import breathe
27import os
28import subprocess
29from sphinxcontrib import katex
30
31# -- General configuration ------------------------------------------------
32
33# If your documentation needs a minimal Sphinx version, state it here.
34#
35# needs_sphinx = '1.0'
36
37# Add any Sphinx extension module names here, as strings. They can be
38# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
39# ones.
40extensions = [
41    'altair.sphinxext.altairplot',
42    'breathe',
43    'hoverxref.extension',
44    'sphinx_panels',
45    'myst_parser',
46    'sphinx_rtd_theme',
47    'sphinx.ext.autodoc',
48    'sphinx.ext.coverage',
49    'sphinx.ext.doctest',
50    'sphinx.ext.ifconfig',
51    'sphinx.ext.intersphinx',
52    'sphinx.ext.githubpages',
53    'sphinxcontrib.katex',
54    'sphinxcontrib.mermaid',  # still in beta; fails with latexpdf builder
55    'sphinx.ext.todo',
56    'sphinx.ext.viewcode',
57    'sphinxcontrib.bibtex',
58    'sphinxcontrib.rsvgconverter',
59]
60
61# The following, if true, allows figures, tables and code-blocks to be
62# automatically numbered if they have a caption.
63numfig = True
64
65# Add any paths that contain templates here, relative to this directory.
66templates_path = ['_templates']
67
68# The master toctree document.
69master_doc = 'index'
70
71# General information about the project.
72project = 'libCEED'
73copyright = '2020, LLNL, University of Colorado, University of Illinois, University of Tennesee, and the authors'
74with open('../../../AUTHORS') as f:
75    authorlist = f.readlines()
76author = ', '.join(authorlist)
77
78# The version info for the project you're documenting, acts as replacement for
79# |version| and |release|, also used in various other places throughout the
80# built documents.
81#
82# The short X.Y version.
83with open('../../../ceed.pc.template') as f:
84    pkgconf_version = 'unknown'
85    for line in f:
86        if line.startswith('Version:'):
87            pkgconf_version = line.partition(': ')[2]
88            break
89version = pkgconf_version
90# The full version, including alpha/beta/rc tags.
91release = pkgconf_version
92
93# The language for content autogenerated by Sphinx. Refer to documentation
94# for a list of supported languages.
95#
96# This is also used if you do content translation via gettext catalogs.
97# Usually you set "language" from the command line for these cases.
98language = "en"
99
100# List of patterns, relative to source directory, that match files and
101# directories to ignore when looking for source files.
102# This patterns also effect to html_static_path and html_extra_path
103exclude_patterns = [
104    'examples/README.md',
105    'examples/ceed/README.md',
106    'examples/fluids/README.md',
107    'examples/nek/README.md',
108    'examples/petsc/README.md',
109    'examples/solid/README.md',
110]
111
112# The name of the Pygments (syntax highlighting) style to use.
113pygments_style = 'sphinx'
114
115# If true, `todo` and `todoList` produce output, else they produce nothing.
116todo_include_todos = True
117
118# sphinxcontrib-bibtex 2.0 requires listing all bibtex files here
119bibtex_bibfiles = [
120    'references.bib',
121]
122
123myst_enable_extensions = [
124    'deflist',
125    'dollarmath',
126    'html_image',
127    'linkify',
128    'colon_fence',
129]
130
131myst_heading_anchors = 2
132myst_url_schemes = ["http", "https", "mailto"]
133
134# -- Options for HTML output ----------------------------------------------
135
136# The theme to use for HTML and HTML Help pages.  See the documentation for
137# a list of builtin themes.
138#
139html_theme = 'sphinx_rtd_theme'
140
141# Theme options are theme-specific and customize the look and feel of a theme
142# further.  For a list of options available for each theme, see the
143# documentation.
144#
145# html_theme_options = {}
146
147# Add any paths that contain custom static files (such as style sheets) here,
148# relative to this directory. They are copied after the builtin static files,
149# so a file named "default.css" will overwrite the builtin "default.css".
150html_static_path = ["css"]
151
152# Custom sidebar templates, must be a dictionary that maps document names
153# to template names.
154#
155# This is required for the alabaster theme
156# refs: http://alabaster.readthedocs.io/en/latest/installation.html#sidebars
157html_sidebars = {
158    '**': [
159        'relations.html',  # needs 'show_related': True theme option to display
160        'searchbox.html',
161    ]
162}
163
164# hoverxref options
165hoverxref_auto_ref = True
166hoverxref_mathjax = True
167hoverxref_role_types = {
168    'ref': 'modal',
169}
170
171latex_macros = r"""
172\def \diff {\operatorname{d}\!}
173\def \tcolon {\!:\!}
174\def \trace {\operatorname{trace}}
175"""
176
177# Translate LaTeX macros to KaTeX and add to options for HTML builder
178katex_macros = katex.latex_defs_to_katex_macros(latex_macros)
179katex_options = 'macros: {' + katex_macros + '}'
180
181# -- Options for HTMLHelp output ------------------------------------------
182
183# Output file base name for HTML help builder.
184htmlhelp_basename = 'libCEEDdoc'
185
186
187# -- Options for LaTeX output ---------------------------------------------
188
189latex_engine = 'xelatex'
190
191latex_elements = {
192    # The paper size ('letterpaper' or 'a4paper').
193    #
194    # 'papersize': 'letterpaper',
195
196    # The font size ('10pt', '11pt' or '12pt').
197    #
198    # 'pointsize': '10pt',
199
200    # Additional stuff for the LaTeX preamble.
201    #
202    'preamble': r"""
203\usepackage{bm}
204\usepackage{amscd}
205""" + latex_macros,
206
207    # Latex figure (float) alignment
208    #
209    # 'figure_align': 'htbp',
210    'fontenc': r'\usepackage{mathspec}',
211    'fontpkg': r"""
212\setmainfont{TeX Gyre Pagella}
213\setmathfont{TeX Gyre Pagella Math}
214\setsansfont{DejaVu Sans}
215\setmonofont{DejaVu Sans Mono}
216""",
217}
218
219latex_logo = '../../img/ceed-full-name-logo.PNG'
220
221latexauthorslist = r' \and '.join(authorlist)
222
223# Grouping the document tree into LaTeX files. List of tuples
224# (source start file, target name, title,
225#  author, documentclass [howto, manual, or own class]).
226latex_documents = [
227    (master_doc, 'libCEED.tex', 'libCEED User Manual',
228     latexauthorslist, 'howto'),
229]
230
231
232# -- Options for manual page output ---------------------------------------
233
234# One entry per manual page. List of tuples
235# (source start file, name, description, authors, manual section).
236man_pages = [
237    (master_doc, 'libceed', 'libCEED User Manual',
238     [author], 1)
239]
240
241
242# -- Options for Texinfo output -------------------------------------------
243
244# Grouping the document tree into Texinfo files. List of tuples
245# (source start file, target name, title, author,
246#  dir menu entry, description, category)
247texinfo_documents = [
248    (master_doc, 'libCEED', 'libCEED User Manual',
249     latexauthorslist, 'libCEED', 'Efficient implementations of finite element operators.',
250     'Miscellaneous'),
251]
252
253
254# -- Options for Epub output ----------------------------------------------
255
256# Bibliographic Dublin Core info.
257epub_title = project
258epub_author = author
259epub_publisher = author
260epub_copyright = copyright
261
262# The unique identifier of the text. This can be a ISBN number
263# or the project homepage.
264#
265# epub_identifier = ''
266
267# A unique identification for the text.
268#
269# epub_uid = ''
270
271# A list of files that should not be packed into the epub file.
272epub_exclude_files = ['search.html']
273
274
275# Example configuration for intersphinx: refer to the Python standard library.
276intersphinx_mapping = {
277    'python': ('https://docs.python.org/3', None),
278    'numpy': ('https://numpy.org/devdocs', None),
279}
280
281
282# -- Options for breathe --------------------------------------------------
283sys.path.append(breathe.__path__)
284breathe_projects = {"libCEED": "../../../xml"}
285breathe_default_project = "libCEED"
286breathe_build_directory = "../build/breathe"
287breathe_domain_by_extension = {"c": "c", "h": "c", "cpp": "cpp", "hpp": "cpp"}
288
289# Run Doxygen if building on Read The Docs
290rootdir = os.path.join(os.path.dirname(__file__),
291                       os.pardir, os.pardir, os.pardir)
292if os.environ.get('READTHEDOCS'):
293    subprocess.check_call(['doxygen', 'Doxyfile'], cwd=rootdir)
294
295
296def mkdir_p(path):
297    try:
298        os.makedirs(path)
299    except FileExistsError:
300        pass
301
302
303# Copy example documentation from source tree
304try:
305    shutil.rmtree('examples')
306except FileNotFoundError:
307    pass
308for filename in glob.glob(os.path.join(
309        rootdir, 'examples/**/*.md'), recursive=True):
310    destdir = os.path.dirname(os.path.relpath(filename, rootdir))
311    mkdir_p(destdir)
312    shutil.copy2(filename, destdir)
313shutil.copy2(os.path.join(rootdir, 'README.md'), '.')
314
315for filename in glob.glob(os.path.join(
316        rootdir, 'examples/**/*.csv'), recursive=True):
317    destdir = os.path.dirname(os.path.relpath(filename, rootdir))
318    mkdir_p(destdir)
319    shutil.copy2(filename, destdir)
320