phono3py/doc
pre-commit-ci[bot] 0f12a0a295 [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
2022-02-21 22:21:20 +00:00
..
Makefile Update document for v1.18.2 2019-12-22 17:49:56 +09:00
README.md Update README.md 2019-12-22 18:12:53 +09:00
Si-JDOS.png Documentation update 2019-03-14 17:03:36 +09:00
Si-coleigplot.png Update version number (v2.1.0) and changelog. 2021-11-03 09:56:21 +09:00
Si-convergence.png Add a figure for document 2016-11-27 13:38:34 +09:00
Si-kaccum-MFP.png Update document for kaccum 2016-11-26 23:05:29 +09:00
Si-kaccum-m191919.png Documentation update 2019-03-14 17:03:36 +09:00
Si-kaccum-pwscf.png Documentation update 2019-03-14 17:03:36 +09:00
Si-kaccum.png Documentation update 2019-03-14 17:03:36 +09:00
Si-kdeplot-OrRd.png --zmax option is made for kdeplot. 2017-06-12 16:00:53 +02:00
Si-kdeplot-bwr.png --zmax option is made for kdeplot. 2017-06-12 16:00:53 +02:00
Si-kdeplot-gnuplot.png --zmax option is made for kdeplot. 2017-06-12 16:00:53 +02:00
Si-kdeplot-hsv.png --zmax option is made for kdeplot. 2017-06-12 16:00:53 +02:00
Si-kdeplot-jet.png --zmax option is made for kdeplot. 2017-06-12 16:00:53 +02:00
Si-kdeplot-seismic.png --zmax option is made for kdeplot. 2017-06-12 16:00:53 +02:00
Si-kdeplot.png Update document slightly for kdeplot 2016-11-30 20:33:09 +09:00
auxiliary-tools.md Update document for v2.0.0 2021-07-22 21:51:20 +09:00
changelog.md Set version v2.2.0 2022-02-13 14:23:11 +09:00
citation.md Refactoring using pre-commit setting 2021-10-15 16:49:41 +09:00
command-options.md Update document 2021-08-09 16:24:55 +09:00
conf.py [pre-commit.ci] auto fixes from pre-commit.com hooks 2022-02-21 22:21:20 +00:00
crystal.md Update document for v2.0.0 2021-07-22 21:51:20 +09:00
cutoff-pair.md Refactoring using pre-commit setting 2021-10-15 16:49:41 +09:00
direct-solution.md Upadte document 2021-11-04 22:14:00 +09:00
examples.md Update document for v2.0.0 2021-07-22 21:51:20 +09:00
external-tools.md Update document for v2.0.0 2021-07-22 21:51:20 +09:00
hdf5_howto.md Update document 2021-08-09 16:24:55 +09:00
index.md Update document for v2.0.0 2021-07-22 21:51:20 +09:00
install.md enh: major refactoring of setup.py 2021-12-07 10:18:55 +01:00
interfaces.md Refactoring using pre-commit setting 2021-10-15 16:49:41 +09:00
output-files.md Update document for v2.0.0 2021-07-22 21:51:20 +09:00
qe.md Update document for v2.0.0 2021-07-22 21:51:20 +09:00
tips.md Update document for v2.0.0 2021-07-22 21:51:20 +09:00
turbomole.md Update document for v2.0.0 2021-07-22 21:51:20 +09:00
vasp.md Update document for v2.0.0 2021-07-22 21:51:20 +09:00
workload-distribution.md Refactoring using pre-commit setting 2021-10-15 16:49:41 +09:00

README.md

How to write phono3py documentation

This directory contains python-sphinx documentation source.

How to compile

make html

Source files

  • conf.py contains the sphinx setting confiuration.
  • *.rst are the usual sphinx documentation source and the filenames without .rst are the keys to link from toctree mainly in index.rst.

How to publish

Web page files are copied to gh-pages branch. At the phono3py github top directory,

git checkout gh-pages
rm -r .buildinfo .doctrees *

From the directory the sphinx doc is complied,

rsync -avh _build/ <phono3py-repository-directory>/

Again, at the phono3py github top directory,

git add .
git commit -a -m "Update documentation ..."
git push