xref: /libCEED/doc/sphinx/source/conf.py (revision 5fb68f377259d3910de46d787b7c5d1587fd01e1)
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_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\newcommand\bm[1]{\symbf{#1}}
203"""
204    + latex_macros,
205    # Latex figure (float) alignment
206    #
207    # 'figure_align': 'htbp',
208    "fontpkg": r"""
209\usepackage[math-style=ISO,bold-style=ISO]{unicode-math}
210\setmainfont{TeX Gyre Pagella}
211\setmathfont{TeX Gyre Pagella Math}
212\setsansfont{DejaVu Sans}
213\setmonofont{DejaVu Sans Mono}
214""",
215}
216
217latex_logo = "../../img/ceed-full-name-logo.PNG"
218
219latexauthorslist = r" \and ".join(authorlist)
220
221# Grouping the document tree into LaTeX files. List of tuples
222# (source start file, target name, title,
223#  author, documentclass [howto, manual, or own class]).
224latex_documents = [
225    (master_doc, "libCEED.tex", "libCEED User Manual", latexauthorslist, "howto"),
226]
227
228
229# -- Options for manual page output ---------------------------------------
230
231# One entry per manual page. List of tuples
232# (source start file, name, description, authors, manual section).
233man_pages = [(master_doc, "libceed", "libCEED User Manual", [author], 1)]
234
235
236# -- Options for Texinfo output -------------------------------------------
237
238# Grouping the document tree into Texinfo files. List of tuples
239# (source start file, target name, title, author,
240#  dir menu entry, description, category)
241texinfo_documents = [
242    (
243        master_doc,
244        "libCEED",
245        "libCEED User Manual",
246        latexauthorslist,
247        "libCEED",
248        "Efficient implementations of finite element operators.",
249        "Miscellaneous",
250    ),
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 --------------------------------------------------
283breathe_projects = {"libCEED": "../../../xml"}
284breathe_default_project = "libCEED"
285breathe_build_directory = "../build/breathe"
286breathe_domain_by_extension = {"c": "c", "h": "c", "cpp": "cpp", "hpp": "cpp"}
287
288# Run Doxygen if building on Read The Docs
289rootdir = os.path.join(
290    os.path.dirname(__file__),
291    os.pardir,
292    os.pardir,
293    os.pardir)
294if os.environ.get("READTHEDOCS"):
295    subprocess.check_call(["doxygen", "Doxyfile"], cwd=rootdir)
296
297
298def mkdir_p(path):
299    try:
300        os.makedirs(path)
301    except FileExistsError:
302        pass
303
304
305# Copy example documentation from source tree
306try:
307    shutil.rmtree("examples")
308except FileNotFoundError:
309    pass
310for filename in glob.glob(os.path.join(
311        rootdir, "examples/**/*.md"), recursive=True):
312    destdir = os.path.dirname(os.path.relpath(filename, rootdir))
313    mkdir_p(destdir)
314    shutil.copy2(filename, destdir)
315shutil.copy2(os.path.join(rootdir, "README.md"), ".")
316
317for filename in glob.glob(os.path.join(
318        rootdir, "examples/**/*.csv"), recursive=True):
319    destdir = os.path.dirname(os.path.relpath(filename, rootdir))
320    mkdir_p(destdir)
321    shutil.copy2(filename, destdir)
322