Sphinx ist ein in Python geschriebenes Dokumentationswerkzeug. Im Gegensatz zu Word können Sie Dokumente wie ein Programm schreiben. Seite der Sphinx Japan Users Association
Schritt Hinweise zum Erstellen und Erstellen eines Projekts.
OS:Mac OS X 10.9.5 Python:Ver.2.7.7
$ sphinx-quickstart
・ ・ ・
#Projektname und Autorenname.
The project name will occur in several places in the built documentation.
> Project name: #Projekttitel
> Author name(s): #Autorenname
・ ・ ・
#Projektversion
Sphinx has the notion of a "version" and a "release" for the
software. Each version can have multiple releases. For example, for
Python the version is something like 2.5 or 3.0, while the release is
something like 2.5.1 or 3.0a1. If you don't need this dual structure,
just set both to the same value.
> Project version: 2014.09.27
> Project release [2010.09.27]:
・ ・ ・
$ make html
HTML wird im Ordner _build / html generiert. Öffnen Sie ** index.html ** und Sie haben ein Dokument.
$ make epub
Wird im Ordner _build / epub generiert.
$ make latex
Wird im Ordner _build / latex generiert.
Recommended Posts