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 167 168latex_macros = r""" 169\def \diff {\operatorname{d}\!} 170\def \tcolon {\!:\!} 171\def \trace {\operatorname{trace}} 172""" 173 174# Translate LaTeX macros to KaTeX and add to options for HTML builder 175katex_macros = katex.latex_defs_to_katex_macros(latex_macros) 176katex_options = 'macros: {' + katex_macros + '}' 177 178# -- Options for HTMLHelp output ------------------------------------------ 179 180# Output file base name for HTML help builder. 181htmlhelp_basename = 'libCEEDdoc' 182 183 184# -- Options for LaTeX output --------------------------------------------- 185 186latex_engine = 'xelatex' 187 188latex_elements = { 189 # The paper size ('letterpaper' or 'a4paper'). 190 # 191 # 'papersize': 'letterpaper', 192 193 # The font size ('10pt', '11pt' or '12pt'). 194 # 195 # 'pointsize': '10pt', 196 197 # Additional stuff for the LaTeX preamble. 198 # 199 'preamble': r""" 200\usepackage{bm} 201\usepackage{amscd} 202""" + latex_macros, 203 204 # Latex figure (float) alignment 205 # 206 # 'figure_align': 'htbp', 207 'fontenc': r'\usepackage{mathspec}', 208 'fontpkg': r""" 209\setmainfont{TeX Gyre Pagella} 210\setmathfont{TeX Gyre Pagella Math} 211\setsansfont{DejaVu Sans} 212\setmonofont{DejaVu Sans Mono} 213""", 214} 215 216latex_logo = '../../img/ceed-full-name-logo.PNG' 217 218latexauthorslist = r' \and '.join(authorlist) 219 220# Grouping the document tree into LaTeX files. List of tuples 221# (source start file, target name, title, 222# author, documentclass [howto, manual, or own class]). 223latex_documents = [ 224 (master_doc, 'libCEED.tex', 'libCEED User Manual', 225 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 = [ 234 (master_doc, 'libceed', 'libCEED User Manual', 235 [author], 1) 236] 237 238 239# -- Options for Texinfo output ------------------------------------------- 240 241# Grouping the document tree into Texinfo files. List of tuples 242# (source start file, target name, title, author, 243# dir menu entry, description, category) 244texinfo_documents = [ 245 (master_doc, 'libCEED', 'libCEED User Manual', 246 latexauthorslist, 'libCEED', 'Efficient implementations of finite element operators.', 247 'Miscellaneous'), 248] 249 250 251# -- Options for Epub output ---------------------------------------------- 252 253# Bibliographic Dublin Core info. 254epub_title = project 255epub_author = author 256epub_publisher = author 257epub_copyright = copyright 258 259# The unique identifier of the text. This can be a ISBN number 260# or the project homepage. 261# 262# epub_identifier = '' 263 264# A unique identification for the text. 265# 266# epub_uid = '' 267 268# A list of files that should not be packed into the epub file. 269epub_exclude_files = ['search.html'] 270 271 272# Example configuration for intersphinx: refer to the Python standard library. 273intersphinx_mapping = { 274 'python': ('https://docs.python.org/3', None), 275 'numpy': ('https://numpy.org/devdocs', None), 276} 277 278 279# -- Options for breathe -------------------------------------------------- 280sys.path.append(breathe.__path__) 281breathe_projects = {"libCEED": "../../../xml"} 282breathe_default_project = "libCEED" 283breathe_build_directory = "../build/breathe" 284breathe_domain_by_extension = {"c": "c", "h": "c", "cpp": "cpp", "hpp": "cpp"} 285 286# Run Doxygen if building on Read The Docs 287rootdir = os.path.join(os.path.dirname(__file__), 288 os.pardir, os.pardir, os.pardir) 289if os.environ.get('READTHEDOCS'): 290 subprocess.check_call(['doxygen', 'Doxyfile'], cwd=rootdir) 291 292 293def mkdir_p(path): 294 try: 295 os.makedirs(path) 296 except FileExistsError: 297 pass 298 299 300# Copy example documentation from source tree 301try: 302 shutil.rmtree('examples') 303except FileNotFoundError: 304 pass 305for filename in glob.glob(os.path.join( 306 rootdir, 'examples/**/*.md'), recursive=True): 307 destdir = os.path.dirname(os.path.relpath(filename, rootdir)) 308 mkdir_p(destdir) 309 shutil.copy2(filename, destdir) 310shutil.copy2(os.path.join(rootdir, 'README.md'), '.') 311 312for filename in glob.glob(os.path.join( 313 rootdir, 'examples/**/*.csv'), recursive=True): 314 destdir = os.path.dirname(os.path.relpath(filename, rootdir)) 315 mkdir_p(destdir) 316 shutil.copy2(filename, destdir) 317