Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/adfinis/adsy-sphinx-template
Sphinx and LaTeX templates for Adfinis SyGroup CI/CD
https://github.com/adfinis/adsy-sphinx-template
corporate-design corporate-identity sphinx-theme
Last synced: about 1 month ago
JSON representation
Sphinx and LaTeX templates for Adfinis SyGroup CI/CD
- Host: GitHub
- URL: https://github.com/adfinis/adsy-sphinx-template
- Owner: adfinis
- Created: 2016-05-02T14:02:42.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-11-08T15:49:17.000Z (about 1 month ago)
- Last Synced: 2024-11-08T16:41:37.560Z (about 1 month ago)
- Topics: corporate-design, corporate-identity, sphinx-theme
- Language: TeX
- Homepage:
- Size: 903 KB
- Stars: 7
- Watchers: 14
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
==========================
The Ad-Sy Sphinx templates
==========================This repository contains templates for the Sphinx-Doc system, both for HTML
and LaTeX output. To use it, you need a few steps to configure sphinx
correctly.Initializing
============To initialize a new sphinx-doc documentation, just run the `sphinx-quickstart`
command as usual. Alternatively, copy the files from the `example` folder into
the project folder and start customizing the `conf.py` files.The following examples assume that you have added the
`adsy-sphinx-template.src` repository either as a submodule or as a regular
checkout in the root directory. In other words, your directory layout should
look like this:* conf.py
* index.rst
* Makefile
* adsy-sphinx-template.src/- html/
- latex/
- README.rst (this file)Configuring LaTeX
=================To enable the Ad-Sy LaTeX template, add the following to the `conf.py` file:
.. code-block:: python
latex_additional_files = [
'adsy-sphinx-template.src/latex/logo.png',
'adsy-sphinx-template.src/latex/sphinx.sty',
'adsy-sphinx-template.src/latex/adsy.sty'
]latex_elements = {
# The paper size ('letterpaper' or 'a4paper').
'papersize': 'a4paper',# The font size ('10pt', '11pt' or '12pt').
'pointsize': '10pt',# Additional stuff for the LaTeX preamble.
'preamble' : r"""\usepackage{adsy}
\renewcommand{\subtitle}{%s}
""" % (project)
}
Unfortunately, due to the way that Sphinx generates LaTeX, we need some
additional hackery to get it to work with our template: Replace the
`latexpdf` target in the Makefile with the following code to make it work
correctly:.. code-block:: make
latexpdf:
$(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
sed -i 's/pdflatex/xelatex/g' $(BUILDDIR)/latex/Makefile
sed -i '/^\\DeclareUnicodeCharacter/d' $(BUILDDIR)/latex/*.tex
sed -i '/\\usepackage{hyperref}/d' $(BUILDDIR)/latex/sphinxmanual.cls
sed -i '/\\usepackage\[Bjarne\]{fncychap}/d' $(BUILDDIR)/latex/*.tex@echo "Running LaTeX files through pdflatex..."
$(MAKE) -C $(BUILDDIR)/latex all-pdf
@echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."Configuring HTML
================To enable the Ad-Sy HTML template, add the following to the `conf.py` file:
.. code-block:: python
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
html_theme = "adsy"
#html_theme_options = {
# "rightsidebar": "true",
#}# Theme options are theme-specific and customize the look and feel of a theme
# further. For a list of options available for each theme, see the
# documentation.
#html_theme_options = {}# Add any paths that contain custom themes here, relative to this directory.
html_theme_path = [ 'adsy-sphinx-template.src/html' ]# Works with github and gitlab
html_context = {
'source_url_prefix':
"https://github.com/adfinis-sygroup/[project]/tree/master/doc/",
'source_suffix': ".rst",
}