5.1.1.2. bizstyle

The bizstyle provides a standard style contained in sphinx.

../../../_images/bizstyle1.png

Figure: Theme ‘bizstyle’

configuration

The current example implementation contains the files within the default path:

setupddocx/configurations/sphinx/bizstyle

file

remark

docsrc/conf.py

adds configuration variables

docsrc/index.rst

adaptation of totree

docsrc/index_application.rst

adaptation of totree

docsrc/index_documentation.rst

adaptation of totree

docsrc/index_starthere.rst

adaptation of totree

docsrc/_static/custom.css

sets some custom colors and sizes

docsrc/_static/favicon.ico

provides a demo favicon, requires ICO

docsrc/_static/logo.png

provides a demo logo, requires PNG

call

The call creates a html document within the local directory doc

python setup.py  \
   build_docx \
      --conf-dir=setupdocx/configurations/sphinx/bizstyle/ \
   install_docx \
      --dist-dir doc

# cut-and-paste for execution
# for readability split acros multiple lines

The same call with detailed command line parameters:

python setup.py  \
   build_docx \
      --doctype=html \
      --docname=bizstyle \
      --conf-dir=setupdocx/confonfigurations/sphinx/bizstyle/
   install_docx \
      --dist-dir doc \
      --docname=bizstyle

# cut-and-paste for execution
# for readability split acros multiple lines