conf.py 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. # -*- coding: utf-8 -*-
  2. #
  3. # Configuration file for the Sphinx documentation builder.
  4. #
  5. # This file does only contain a selection of the most common options. For a
  6. # full list see the documentation:
  7. # http://www.sphinx-doc.org/en/master/config
  8. # -- Path setup --------------------------------------------------------------
  9. # If extensions (or modules to document with autodoc) are in another directory,
  10. # add these directories to sys.path here. If the directory is relative to the
  11. # documentation root, use os.path.abspath to make it absolute, like shown here.
  12. #
  13. # import os
  14. # import sys
  15. # sys.path.insert(0, os.path.abspath('.'))
  16. # -- Project information -----------------------------------------------------
  17. project = 'Reform'
  18. copyright = '2018, Lukas F. Hartmann / MNT Media and Technology UG, Berlin'
  19. author = ''
  20. # The short X.Y version
  21. version = ''
  22. # The full version, including alpha/beta/rc tags
  23. release = ''
  24. # -- General configuration ---------------------------------------------------
  25. # If your documentation needs a minimal Sphinx version, state it here.
  26. #
  27. # needs_sphinx = '1.0'
  28. # Add any Sphinx extension module names here, as strings. They can be
  29. # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
  30. # ones.
  31. extensions = [
  32. 'sphinx.ext.githubpages'
  33. ]
  34. # Add any paths that contain templates here, relative to this directory.
  35. templates_path = ['_templates']
  36. # The suffix(es) of source filenames.
  37. # You can specify multiple suffix as a list of string:
  38. #
  39. # source_suffix = ['.rst', '.md']
  40. source_suffix = '.rst'
  41. # The master toctree document.
  42. master_doc = 'index'
  43. # The language for content autogenerated by Sphinx. Refer to documentation
  44. # for a list of supported languages.
  45. #
  46. # This is also used if you do content translation via gettext catalogs.
  47. # Usually you set "language" from the command line for these cases.
  48. language = None
  49. # List of patterns, relative to source directory, that match files and
  50. # directories to ignore when looking for source files.
  51. # This pattern also affects html_static_path and html_extra_path .
  52. exclude_patterns = []
  53. # The name of the Pygments (syntax highlighting) style to use.
  54. # ['manni', 'igor', 'lovelace', 'xcode', 'vim', 'autumn', 'abap', 'vs', 'rrt', 'native', 'perldoc', 'borland', 'arduino', 'tango', 'emacs', 'friendly', 'monokai', 'paraiso-dark', 'colorful', 'murphy', 'bw', 'pastie', 'rainbow_dash', 'algol_nu', 'paraiso-light', 'trac', 'default', 'algol', 'fruity']
  55. pygments_style = 'fruity'
  56. # -- Options for HTML output -------------------------------------------------
  57. # The theme to use for HTML and HTML Help pages. See the documentation for
  58. # a list of builtin themes.
  59. #
  60. html_theme = 'theme'
  61. html_theme_path = ['.']
  62. # Theme options are theme-specific and customize the look and feel of a theme
  63. # further. For a list of options available for each theme, see the
  64. # documentation.
  65. #
  66. # html_theme_options = {}
  67. # Add any paths that contain custom static files (such as style sheets) here,
  68. # relative to this directory. They are copied after the builtin static files,
  69. # so a file named "default.css" will overwrite the builtin "default.css".
  70. html_static_path = ['_static']
  71. # Custom sidebar templates, must be a dictionary that maps document names
  72. # to template names.
  73. #
  74. # The default sidebars (for documents that don't match any pattern) are
  75. # defined by theme itself. Builtin themes are using these templates by
  76. # default: ``['localtoc.html', 'relations.html', 'sourcelink.html',
  77. # 'searchbox.html']``.
  78. #
  79. html_sidebars = { '**': ['globaltoc.html'] }
  80. # -- Options for HTMLHelp output ---------------------------------------------
  81. # Output file base name for HTML help builder.
  82. htmlhelp_basename = 'Reformdoc'
  83. # -- Options for LaTeX output ------------------------------------------------
  84. latex_engine = 'xelatex'
  85. latex_elements = {
  86. # The paper size ('letterpaper' or 'a4paper').
  87. #
  88. 'papersize': 'a4paper',
  89. # The font size ('10pt', '11pt' or '12pt').
  90. #
  91. 'pointsize': '11pt',
  92. # Additional stuff for the LaTeX preamble.
  93. #
  94. #'preamble': '',
  95. # Latex figure (float) alignment
  96. #
  97. 'figure_align': 'h', #tbp',
  98. 'passoptionstopackages': r'\PassOptionsToPackage{svgnames}{xcolor}',
  99. 'sphinxsetup': r'TitleColor={named}{Black},InnerLinkColor={named}{Black},OuterLinkColor={named}{Black},verbatimborder=0pt,noteborder=0pt',
  100. 'fontpkg': r'''\setmainfont{EB Garamond}
  101. \setsansfont{Inter UI}
  102. '''
  103. }
  104. # Grouping the document tree into LaTeX files. List of tuples
  105. # (source start file, target name, title,
  106. # author, documentclass [howto, manual, or own class]).
  107. latex_documents = [
  108. (master_doc, 'Reform.tex', 'MNT Reform Operator Handbook',
  109. 'Lukas F. Hartmann, MNT Media and Technology UG, Berlin', 'manual'),
  110. ]
  111. # -- Options for manual page output ------------------------------------------
  112. # One entry per manual page. List of tuples
  113. # (source start file, name, description, authors, manual section).
  114. man_pages = [
  115. (master_doc, 'reform', 'MNT Reform Operator Handbook',
  116. [author], 1)
  117. ]
  118. # -- Options for Texinfo output ----------------------------------------------
  119. # Grouping the document tree into Texinfo files. List of tuples
  120. # (source start file, target name, title, author,
  121. # dir menu entry, description, category)
  122. texinfo_documents = [
  123. (master_doc, 'Reform', 'MNT Reform Operator Handbook',
  124. author, 'Reform', 'One line description of project.',
  125. 'Miscellaneous'),
  126. ]
  127. # -- Extension configuration -------------------------------------------------