phono3py/doc
Atsushi Togo e2b3d27e60 Update document and version to v2.3.0 2022-04-09 15:23:47 +09:00
..
_static Update document and version to v2.3.0 2022-04-09 15:23:47 +09: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 Minor update of document 2022-03-16 17:36:17 +09:00
changelog.md Update document and version to v2.3.0 2022-04-09 15:23:47 +09:00
citation.md Refactoring using pre-commit setting 2021-10-15 16:49:41 +09:00
command-options.md Minor fix of commmand-options doc 2022-03-23 09:16:33 +09:00
conf.py Update document and version to v2.3.0 2022-04-09 15:23:47 +09: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 Update document (API and workflow) 2022-03-19 10:03:14 +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 2022-03-19 21:45:03 +09:00
input-output-files.md Update documentation 2022-03-21 11:55:36 +09:00
install.md Update document (API and workflow) 2022-03-19 10:03:14 +09:00
interfaces.md Refactoring using pre-commit setting 2021-10-15 16:49:41 +09:00
phono3py-api.md Add --scattering-event-class to documentation 2022-03-23 09:14:04 +09:00
procedure.png Update document and version to v2.3.0 2022-04-09 15:23:47 +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
workflow.md Update document 2022-03-19 21:45:03 +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