Changes in docs/sphinx-docs/source/conf.py [6394851:96f00a0] in sasview
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
docs/sphinx-docs/source/conf.py
r6394851 r96f00a0 36 36 'sphinx.ext.coverage', 37 37 'sphinx.ext.mathjax', 38 #'mathjax', # replacement mathjax that allows a list of paths 38 39 'dollarmath', 39 40 'sphinx.ext.viewcode'] 40 41 41 #set mathjax path 42 mathjax_path="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-MML-AM_CHTML" 42 mathjax_path = ( 43 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?' 44 'config=TeX-MML-AM_CHTML') 45 46 # For katex uncomment the following 47 """ 48 #STATIC_PATH = '../../_static/' 49 STATIC_PATH = '' 50 mathjax_path = [ 51 STATIC_PATH + 'katex/katex.min.js', 52 STATIC_PATH + 'katex/contrib/auto-render.min.js', 53 STATIC_PATH + 'rendermath.js' 54 ] 55 mathjax_css = STATIC_PATH + 'katex/katex.min.css' 56 """ 57 43 58 44 59 # Add any paths that contain templates here, relative to this directory. … … 65 80 version = '4.1' 66 81 # The full version, including alpha/beta/rc tags. 67 release = '4.1. 2'82 release = '4.1.0' 68 83 69 84 # The language for content autogenerated by Sphinx. Refer to documentation … … 204 219 # -- Options for LaTeX output -------------------------------------------------- 205 220 221 # TODO: seems like angstroms is defined twice. 206 222 LATEX_PREAMBLE=r""" 223 \usepackage[utf8]{inputenc} % Allow unicode symbols in text 224 \newcommand{\lt}{<} % HTML needs \lt rather than < 225 \newcommand{\gt}{>} % HTML needs \gt rather than > 207 226 \renewcommand{\AA}{\text{\r{A}}} % Allow \AA in math mode 208 \ usepackage[utf8]{inputenc} % Allow unicode symbols in text227 \DeclareUnicodeCharacter {212B} {\AA} % Angstrom 209 228 \DeclareUnicodeCharacter {00B7} {\ensuremath{\cdot}} % cdot 210 229 \DeclareUnicodeCharacter {00B0} {\ensuremath{^\circ}} % degrees 211 \DeclareUnicodeCharacter {212B} {\AA} % Angstrom212 230 """ 213 231 latex_elements = {
Note: See TracChangeset
for help on using the changeset viewer.