xref: /libCEED/doc/sphinx/source/conf.py (revision 356036fa84f714fa73ef64c9a80ce2028dde816f)
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    "sphinxext_altair.altairplot",
42    "breathe",
43    "hoverxref.extension",
44    "sphinx_design",
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 = "lualatex"
190
191latex_elements = {
192    # The paper size ('letterpaper' or 'a4paper').
193    #
194    # 'papersize': 'letterpaper',
195    # The font size ('10pt', '11pt' or '12pt').
196    #
197    # 'pointsize': '10pt',
198    # Additional stuff for the LaTeX preamble.
199    #
200    "preamble": r"""
201\usepackage{amscd}
202\usepackage{cancel}
203\newcommand\bm[1]{\symbf{#1}}
204"""
205    + latex_macros,
206    # Latex figure (float) alignment
207    #
208    # 'figure_align': 'htbp',
209    "fontpkg": r"""
210\usepackage[math-style=ISO,bold-style=ISO]{unicode-math}
211\setmainfont{TeX Gyre Pagella}
212\setmathfont{TeX Gyre Pagella Math}
213\setsansfont{DejaVu Sans}
214\setmonofont{DejaVu Sans Mono}
215""",
216}
217
218latex_logo = "../../img/ceed-full-name-logo.PNG"
219
220latexauthorslist = r" \and ".join(authorlist)
221
222# Grouping the document tree into LaTeX files. List of tuples
223# (source start file, target name, title,
224#  author, documentclass [howto, manual, or own class]).
225latex_documents = [
226    (master_doc, "libCEED.tex", "libCEED User Manual", latexauthorslist, "howto"),
227]
228
229
230# -- Options for manual page output ---------------------------------------
231
232# One entry per manual page. List of tuples
233# (source start file, name, description, authors, manual section).
234man_pages = [(master_doc, "libceed", "libCEED User Manual", [author], 1)]
235
236
237# -- Options for Texinfo output -------------------------------------------
238
239# Grouping the document tree into Texinfo files. List of tuples
240# (source start file, target name, title, author,
241#  dir menu entry, description, category)
242texinfo_documents = [
243    (
244        master_doc,
245        "libCEED",
246        "libCEED User Manual",
247        latexauthorslist,
248        "libCEED",
249        "Efficient implementations of finite element operators.",
250        "Miscellaneous",
251    ),
252]
253
254
255# -- Options for Epub output ----------------------------------------------
256
257# Bibliographic Dublin Core info.
258epub_title = project
259epub_author = author
260epub_publisher = author
261epub_copyright = copyright
262
263# The unique identifier of the text. This can be a ISBN number
264# or the project homepage.
265#
266# epub_identifier = ''
267
268# A unique identification for the text.
269#
270# epub_uid = ''
271
272# A list of files that should not be packed into the epub file.
273epub_exclude_files = ["search.html"]
274
275
276# Example configuration for intersphinx: refer to the Python standard library.
277intersphinx_mapping = {
278    "python": ("https://docs.python.org/3", None),
279    "numpy": ("https://numpy.org/devdocs", None),
280}
281
282
283# -- Options for breathe --------------------------------------------------
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(
291    os.path.dirname(__file__),
292    os.pardir,
293    os.pardir,
294    os.pardir)
295if os.environ.get("READTHEDOCS"):
296    subprocess.check_call(["doxygen", "Doxyfile"], cwd=rootdir)
297
298
299def mkdir_p(path):
300    try:
301        os.makedirs(path)
302    except FileExistsError:
303        pass
304
305
306# Copy example documentation from source tree
307try:
308    shutil.rmtree("examples")
309except FileNotFoundError:
310    pass
311for filename in glob.glob(os.path.join(
312        rootdir, "examples/**/*.md"), recursive=True):
313    destdir = os.path.dirname(os.path.relpath(filename, rootdir))
314    mkdir_p(destdir)
315    shutil.copy2(filename, destdir)
316shutil.copy2(os.path.join(rootdir, "README.md"), ".")
317
318for filename in glob.glob(os.path.join(
319        rootdir, "examples/**/*.csv"), recursive=True):
320    destdir = os.path.dirname(os.path.relpath(filename, rootdir))
321    mkdir_p(destdir)
322    shutil.copy2(filename, destdir)
323