| |
| |
| |
| |
|
|
| |
| |
|
|
| import os |
| import sys |
| sys.path.insert(0, os.path.abspath('../../src/')) |
|
|
| project = 'AIM-CU' |
| copyright = '2024, Smriti Prathapan, Berkman Sahiner, Dhaval Kadia, Ravi K. Samala' |
| author = 'Smriti Prathapan, Berkman Sahiner, Dhaval Kadia, Ravi K. Samala' |
| release = '1.0.0' |
| version = '1.0.0' |
|
|
| |
| |
|
|
| extensions = ['sphinx.ext.autodoc', |
| 'sphinx.ext.coverage', |
| 'sphinx.ext.napoleon', |
| 'sphinx.ext.autosummary', |
| 'sphinx.ext.duration', |
| 'sphinx_tabs.tabs', |
| 'sphinx_simplepdf', |
| |
| |
| |
| ] |
|
|
| templates_path = ['_templates'] |
| exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] |
|
|
|
|
|
|
| |
| |
|
|
| html_theme = 'alabaster' |
| |
|
|
| html_show_copyright = False |
| html_theme_options = { |
| 'sidebar_width': '300px', |
| 'page_width': '1200px', |
| 'body_max_width': 'auto', |
| 'github_button': 'true', |
| 'github_user': 'DIDSR', |
| 'github_repo': 'AIM-CU', |
| } |
| |
|
|
| latex_elements = { |
| 'preamble': r''' |
| \DeclareUnicodeCharacter{03BC}{\textmu} |
| \DeclareUnicodeCharacter{03C3}{\ensuremath{\sigma}} |
| ''', |
| 'classoptions': ',oneside', |
| "preamble": r""" |
| \usepackage{newunicodechar} |
| \newunicodechar{μ}{\ensuremath{\mu}} |
| \newunicodechar{σ}{\ensuremath{\sigma}} |
| \newunicodechar{ᵢ}{\textsubscript{i}} |
| \newunicodechar{ₙ}{\textsubscript{n}} |
| \newunicodechar{₀}{\textsubscript{0}} |
| \newunicodechar{₁}{\textsubscript{1}} |
| \newunicodechar{ₕ}{\textsubscript{h}} |
| \newunicodechar{ₗ}{\textsubscript{l}} |
| """ |
| } |
|
|